├── autostart.sh ├── autostart_wait.sh ├── dualmon.sh ├── dwm-status-refresh.sh ├── dwm-status.sh ├── dwmbar-functions ├── dwm_alsa.sh ├── dwm_backlight.sh ├── dwm_battery.sh ├── dwm_ccurse.sh ├── dwm_cmus.sh ├── dwm_countdown.sh ├── dwm_date.sh ├── dwm_keyboard.sh ├── dwm_mail.sh ├── dwm_network.sh ├── dwm_pulse.sh ├── dwm_resources.sh ├── dwm_transmission.sh ├── dwm_vpn.sh └── dwm_weather.sh ├── install-brew-packages.sh ├── inverse-scroll.sh ├── run-mailsync.sh ├── sck-tog.sh ├── setxmodmap-colemak.sh ├── setxmodmap-qwerty.sh ├── suspend.sh ├── tap-to-click.sh ├── vol-down.sh ├── vol-toggle.sh ├── vol-up.sh ├── wp-autochange.sh └── wp-change.sh /autostart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/autostart.sh -------------------------------------------------------------------------------- /autostart_wait.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/autostart_wait.sh -------------------------------------------------------------------------------- /dualmon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/dualmon.sh -------------------------------------------------------------------------------- /dwm-status-refresh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/dwm-status-refresh.sh -------------------------------------------------------------------------------- /dwm-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/dwm-status.sh -------------------------------------------------------------------------------- /dwmbar-functions/dwm_alsa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/dwmbar-functions/dwm_alsa.sh -------------------------------------------------------------------------------- /dwmbar-functions/dwm_backlight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/dwmbar-functions/dwm_backlight.sh -------------------------------------------------------------------------------- /dwmbar-functions/dwm_battery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/dwmbar-functions/dwm_battery.sh -------------------------------------------------------------------------------- /dwmbar-functions/dwm_ccurse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/dwmbar-functions/dwm_ccurse.sh -------------------------------------------------------------------------------- /dwmbar-functions/dwm_cmus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/dwmbar-functions/dwm_cmus.sh -------------------------------------------------------------------------------- /dwmbar-functions/dwm_countdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/dwmbar-functions/dwm_countdown.sh -------------------------------------------------------------------------------- /dwmbar-functions/dwm_date.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/dwmbar-functions/dwm_date.sh -------------------------------------------------------------------------------- /dwmbar-functions/dwm_keyboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/dwmbar-functions/dwm_keyboard.sh -------------------------------------------------------------------------------- /dwmbar-functions/dwm_mail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/dwmbar-functions/dwm_mail.sh -------------------------------------------------------------------------------- /dwmbar-functions/dwm_network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/dwmbar-functions/dwm_network.sh -------------------------------------------------------------------------------- /dwmbar-functions/dwm_pulse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/dwmbar-functions/dwm_pulse.sh -------------------------------------------------------------------------------- /dwmbar-functions/dwm_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/dwmbar-functions/dwm_resources.sh -------------------------------------------------------------------------------- /dwmbar-functions/dwm_transmission.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/dwmbar-functions/dwm_transmission.sh -------------------------------------------------------------------------------- /dwmbar-functions/dwm_vpn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/dwmbar-functions/dwm_vpn.sh -------------------------------------------------------------------------------- /dwmbar-functions/dwm_weather.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/dwmbar-functions/dwm_weather.sh -------------------------------------------------------------------------------- /install-brew-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/install-brew-packages.sh -------------------------------------------------------------------------------- /inverse-scroll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/inverse-scroll.sh -------------------------------------------------------------------------------- /run-mailsync.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | while :; do 4 | mailsync 5 | sleep 300 6 | done 7 | -------------------------------------------------------------------------------- /sck-tog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/sck-tog.sh -------------------------------------------------------------------------------- /setxmodmap-colemak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/setxmodmap-colemak.sh -------------------------------------------------------------------------------- /setxmodmap-qwerty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/setxmodmap-qwerty.sh -------------------------------------------------------------------------------- /suspend.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | systemctl suspend 4 | -------------------------------------------------------------------------------- /tap-to-click.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/tap-to-click.sh -------------------------------------------------------------------------------- /vol-down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/vol-down.sh -------------------------------------------------------------------------------- /vol-toggle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/vol-toggle.sh -------------------------------------------------------------------------------- /vol-up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/vol-up.sh -------------------------------------------------------------------------------- /wp-autochange.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/wp-autochange.sh -------------------------------------------------------------------------------- /wp-change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/scripts/HEAD/wp-change.sh --------------------------------------------------------------------------------