├── README.md ├── config ├── 10-default-env-vars.conf ├── 10-default-env-vars.sh ├── 55-maiden-systemctl.pkla ├── 99-realtime.conf ├── bashrc ├── blacklist-8192cu.conf ├── interfaces ├── jackdrc ├── journald.conf ├── logrotate.conf ├── motd ├── network-manager │ ├── 100-disable-wifi-mac-randomization.conf │ ├── 101-logging.conf │ └── 200-disable-nmcli-auth.conf ├── norns-crone.service ├── norns-jack.service ├── norns-maiden.service ├── norns-maiden.socket ├── norns-matron.service ├── norns-sclang.service ├── norns-watcher.service ├── norns.target ├── rsyslog ├── rsyslog.conf └── smb.conf ├── readme-hardware.md ├── readme-usbdisk.md ├── scripts ├── battery-check.sh └── rec-test.sh ├── setup.sh └── usbboot.jpg /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/README.md -------------------------------------------------------------------------------- /config/10-default-env-vars.conf: -------------------------------------------------------------------------------- 1 | [Manager] 2 | DefaultEnvironment="JACK_NO_START_SERVER=1" 3 | -------------------------------------------------------------------------------- /config/10-default-env-vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/config/10-default-env-vars.sh -------------------------------------------------------------------------------- /config/55-maiden-systemctl.pkla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/config/55-maiden-systemctl.pkla -------------------------------------------------------------------------------- /config/99-realtime.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/config/99-realtime.conf -------------------------------------------------------------------------------- /config/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/config/bashrc -------------------------------------------------------------------------------- /config/blacklist-8192cu.conf: -------------------------------------------------------------------------------- 1 | blacklist 8192cu 2 | -------------------------------------------------------------------------------- /config/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/config/interfaces -------------------------------------------------------------------------------- /config/jackdrc: -------------------------------------------------------------------------------- 1 | /usr/bin/jackd -P75 -dalsa -dhw:0 -p128 -n3 -S -r48000 2 | -------------------------------------------------------------------------------- /config/journald.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/config/journald.conf -------------------------------------------------------------------------------- /config/logrotate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/config/logrotate.conf -------------------------------------------------------------------------------- /config/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/config/motd -------------------------------------------------------------------------------- /config/network-manager/100-disable-wifi-mac-randomization.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/config/network-manager/100-disable-wifi-mac-randomization.conf -------------------------------------------------------------------------------- /config/network-manager/101-logging.conf: -------------------------------------------------------------------------------- 1 | [logging] 2 | audit=false 3 | domains=DEFAULT:INFO,AUDIT:OFF 4 | -------------------------------------------------------------------------------- /config/network-manager/200-disable-nmcli-auth.conf: -------------------------------------------------------------------------------- 1 | [main] 2 | auth-polkit=false 3 | -------------------------------------------------------------------------------- /config/norns-crone.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/config/norns-crone.service -------------------------------------------------------------------------------- /config/norns-jack.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/config/norns-jack.service -------------------------------------------------------------------------------- /config/norns-maiden.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/config/norns-maiden.service -------------------------------------------------------------------------------- /config/norns-maiden.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/config/norns-maiden.socket -------------------------------------------------------------------------------- /config/norns-matron.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/config/norns-matron.service -------------------------------------------------------------------------------- /config/norns-sclang.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/config/norns-sclang.service -------------------------------------------------------------------------------- /config/norns-watcher.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/config/norns-watcher.service -------------------------------------------------------------------------------- /config/norns.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/config/norns.target -------------------------------------------------------------------------------- /config/rsyslog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/config/rsyslog -------------------------------------------------------------------------------- /config/rsyslog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/config/rsyslog.conf -------------------------------------------------------------------------------- /config/smb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/config/smb.conf -------------------------------------------------------------------------------- /readme-hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/readme-hardware.md -------------------------------------------------------------------------------- /readme-usbdisk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/readme-usbdisk.md -------------------------------------------------------------------------------- /scripts/battery-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/scripts/battery-check.sh -------------------------------------------------------------------------------- /scripts/rec-test.sh: -------------------------------------------------------------------------------- 1 | arecord -f dat -d 5 test.wav 2 | -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/setup.sh -------------------------------------------------------------------------------- /usbboot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/norns-image/HEAD/usbboot.jpg --------------------------------------------------------------------------------