├── LICENSE.txt ├── README.md ├── backlight ├── finish └── run ├── btpd ├── conf ├── finish ├── log │ └── run └── run ├── colord ├── conf ├── log │ └── run └── run ├── mpd ├── conf ├── log │ └── run └── run ├── picom ├── conf ├── log │ └── run └── run ├── pipewire-media-session ├── conf ├── log │ └── run └── run ├── pipewire-pulse ├── conf ├── log │ └── run └── run ├── pipewire ├── conf ├── log │ └── run └── run ├── psd ├── finish └── run ├── redshift ├── conf ├── log │ └── run └── run ├── safeeyes ├── conf ├── log │ └── run └── run ├── syncthing ├── conf ├── log │ └── run └── run ├── thinkfan ├── conf ├── log │ └── run └── run └── wireplumber ├── conf ├── log └── run └── run /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/README.md -------------------------------------------------------------------------------- /backlight/finish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/backlight/finish -------------------------------------------------------------------------------- /backlight/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/backlight/run -------------------------------------------------------------------------------- /btpd/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/btpd/conf -------------------------------------------------------------------------------- /btpd/finish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/btpd/finish -------------------------------------------------------------------------------- /btpd/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/btpd/log/run -------------------------------------------------------------------------------- /btpd/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/btpd/run -------------------------------------------------------------------------------- /colord/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/colord/conf -------------------------------------------------------------------------------- /colord/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/colord/log/run -------------------------------------------------------------------------------- /colord/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/colord/run -------------------------------------------------------------------------------- /mpd/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/mpd/conf -------------------------------------------------------------------------------- /mpd/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/mpd/log/run -------------------------------------------------------------------------------- /mpd/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/mpd/run -------------------------------------------------------------------------------- /picom/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/picom/conf -------------------------------------------------------------------------------- /picom/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/picom/log/run -------------------------------------------------------------------------------- /picom/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/picom/run -------------------------------------------------------------------------------- /pipewire-media-session/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/pipewire-media-session/conf -------------------------------------------------------------------------------- /pipewire-media-session/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/pipewire-media-session/log/run -------------------------------------------------------------------------------- /pipewire-media-session/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/pipewire-media-session/run -------------------------------------------------------------------------------- /pipewire-pulse/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/pipewire-pulse/conf -------------------------------------------------------------------------------- /pipewire-pulse/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/pipewire-pulse/log/run -------------------------------------------------------------------------------- /pipewire-pulse/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/pipewire-pulse/run -------------------------------------------------------------------------------- /pipewire/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/pipewire/conf -------------------------------------------------------------------------------- /pipewire/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/pipewire/log/run -------------------------------------------------------------------------------- /pipewire/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/pipewire/run -------------------------------------------------------------------------------- /psd/finish: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec psd unsync 4 | -------------------------------------------------------------------------------- /psd/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | psd sync 4 | exec chpst -b psd pause 5 | -------------------------------------------------------------------------------- /redshift/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/redshift/conf -------------------------------------------------------------------------------- /redshift/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/redshift/log/run -------------------------------------------------------------------------------- /redshift/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/redshift/run -------------------------------------------------------------------------------- /safeeyes/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/safeeyes/conf -------------------------------------------------------------------------------- /safeeyes/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/safeeyes/log/run -------------------------------------------------------------------------------- /safeeyes/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/safeeyes/run -------------------------------------------------------------------------------- /syncthing/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/syncthing/conf -------------------------------------------------------------------------------- /syncthing/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/syncthing/log/run -------------------------------------------------------------------------------- /syncthing/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/syncthing/run -------------------------------------------------------------------------------- /thinkfan/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/thinkfan/conf -------------------------------------------------------------------------------- /thinkfan/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/thinkfan/log/run -------------------------------------------------------------------------------- /thinkfan/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/thinkfan/run -------------------------------------------------------------------------------- /wireplumber/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/wireplumber/conf -------------------------------------------------------------------------------- /wireplumber/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/wireplumber/log/run -------------------------------------------------------------------------------- /wireplumber/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madand/runit-services/HEAD/wireplumber/run --------------------------------------------------------------------------------