diff options
-rw-r--r-- | profiles/targets/desktop/package.accept_keywords | 1 | ||||
-rwxr-xr-x | sys-apps/openrc-user-services/files/autodarkmode | 4 | ||||
-rwxr-xr-x | sys-apps/openrc-user-services/files/footserver | 5 | ||||
-rwxr-xr-x | sys-apps/openrc-user-services/files/swaybg | 5 | ||||
-rwxr-xr-x | sys-apps/openrc-user-services/files/waybar | 4 | ||||
-rw-r--r-- | sys-apps/openrc-user-services/openrc-user-services-1.ebuild | 11 |
6 files changed, 30 insertions, 0 deletions
diff --git a/profiles/targets/desktop/package.accept_keywords b/profiles/targets/desktop/package.accept_keywords index 2b0801e..605fe04 100644 --- a/profiles/targets/desktop/package.accept_keywords +++ b/profiles/targets/desktop/package.accept_keywords @@ -2,3 +2,4 @@ >=gui-apps/fuzzel-1.12.0 ~amd64 >=gui-apps/wf-recorder-0.5.0-r1 ~amd64 >=gui-apps/tuigreet-0.9.1-r2 ~amd64 +>=sys-apps/openrc-user-services-1 ~amd64 diff --git a/sys-apps/openrc-user-services/files/autodarkmode b/sys-apps/openrc-user-services/files/autodarkmode new file mode 100755 index 0000000..7b342a9 --- /dev/null +++ b/sys-apps/openrc-user-services/files/autodarkmode @@ -0,0 +1,4 @@ +#!/sbin/openrc-run + +supervisor=supervise-daemon +command="/home/lain/.local/bin/autodarkmode" diff --git a/sys-apps/openrc-user-services/files/footserver b/sys-apps/openrc-user-services/files/footserver new file mode 100755 index 0000000..d1a54cf --- /dev/null +++ b/sys-apps/openrc-user-services/files/footserver @@ -0,0 +1,5 @@ +#!/sbin/openrc-run + +supervisor=supervise-daemon +command="foot" +command_args="--server" diff --git a/sys-apps/openrc-user-services/files/swaybg b/sys-apps/openrc-user-services/files/swaybg new file mode 100755 index 0000000..37fbcb2 --- /dev/null +++ b/sys-apps/openrc-user-services/files/swaybg @@ -0,0 +1,5 @@ +#!/sbin/openrc-run + +supervisor=supervise-daemon +command="/usr/bin/swaybg" +command_args="-i /home/lain/Desktop/wallpaper.jpg -m fill" diff --git a/sys-apps/openrc-user-services/files/waybar b/sys-apps/openrc-user-services/files/waybar new file mode 100755 index 0000000..20acb82 --- /dev/null +++ b/sys-apps/openrc-user-services/files/waybar @@ -0,0 +1,4 @@ +#!/sbin/openrc-run + +supervisor=supervise-daemon +command="waybar" diff --git a/sys-apps/openrc-user-services/openrc-user-services-1.ebuild b/sys-apps/openrc-user-services/openrc-user-services-1.ebuild new file mode 100644 index 0000000..4e4ca93 --- /dev/null +++ b/sys-apps/openrc-user-services/openrc-user-services-1.ebuild @@ -0,0 +1,11 @@ +EAPI=8 +DESCRIPTION="Custom User Services for software i use" +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64" +S="${WORKDIR}" + +src_install() { + exeinto /etc/user.d/init.d + doexe ${FILESDIR}/* +} |