summaryrefslogtreecommitdiff
path: root/rc
diff options
context:
space:
mode:
authorRose <rose@pinkro.se>2025-08-25 18:45:30 +0200
committerRose <rose@pinkro.se>2025-08-25 18:45:30 +0200
commit9bb29c3310baff546b17ff3c8aeddb2296b7f0ce (patch)
tree91d4e06712b65890f62302559598d8d6acf0307a /rc
parentcee9eb00e06e992250a55f8278c26d4448316da1 (diff)
downloaddotfiles-9bb29c3310baff546b17ff3c8aeddb2296b7f0ce.tar.gz
dotfiles-9bb29c3310baff546b17ff3c8aeddb2296b7f0ce.tar.bz2
Move to funkier structure !!
Diffstat (limited to 'rc')
-rw-r--r--rc/.config/rc/rc.conf1
-rwxr-xr-xrc/.config/rc/runlevels/gui/autodarkmode4
-rwxr-xr-xrc/.config/rc/runlevels/gui/footserver5
-rwxr-xr-xrc/.config/rc/runlevels/gui/kittenbar4
-rwxr-xr-xrc/.config/rc/runlevels/gui/pipewire11
-rwxr-xr-xrc/.config/rc/runlevels/gui/pipewire-pulse12
-rwxr-xr-xrc/.config/rc/runlevels/gui/swaybg5
-rwxr-xr-xrc/.config/rc/runlevels/gui/wireplumber11
8 files changed, 53 insertions, 0 deletions
diff --git a/rc/.config/rc/rc.conf b/rc/.config/rc/rc.conf
new file mode 100644
index 0000000..785403e
--- /dev/null
+++ b/rc/.config/rc/rc.conf
@@ -0,0 +1 @@
+rc_env_allow="WAYLAND_DISPLAY DBUS_SESSION_BUS_ADDRESS XDG_RUNTIME_DIR"
diff --git a/rc/.config/rc/runlevels/gui/autodarkmode b/rc/.config/rc/runlevels/gui/autodarkmode
new file mode 100755
index 0000000..7b342a9
--- /dev/null
+++ b/rc/.config/rc/runlevels/gui/autodarkmode
@@ -0,0 +1,4 @@
+#!/sbin/openrc-run
+
+supervisor=supervise-daemon
+command="/home/lain/.local/bin/autodarkmode"
diff --git a/rc/.config/rc/runlevels/gui/footserver b/rc/.config/rc/runlevels/gui/footserver
new file mode 100755
index 0000000..d1a54cf
--- /dev/null
+++ b/rc/.config/rc/runlevels/gui/footserver
@@ -0,0 +1,5 @@
+#!/sbin/openrc-run
+
+supervisor=supervise-daemon
+command="foot"
+command_args="--server"
diff --git a/rc/.config/rc/runlevels/gui/kittenbar b/rc/.config/rc/runlevels/gui/kittenbar
new file mode 100755
index 0000000..27eaafe
--- /dev/null
+++ b/rc/.config/rc/runlevels/gui/kittenbar
@@ -0,0 +1,4 @@
+#!/sbin/openrc-run
+
+supervisor=supervise-daemon
+command="/usr/bin/kittenbar"
diff --git a/rc/.config/rc/runlevels/gui/pipewire b/rc/.config/rc/runlevels/gui/pipewire
new file mode 100755
index 0000000..76a0f19
--- /dev/null
+++ b/rc/.config/rc/runlevels/gui/pipewire
@@ -0,0 +1,11 @@
+#!/sbin/openrc-run
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License, v2 or later
+
+depend() {
+ need dbus
+}
+
+export DBUS_SESSION_BUS_ADDRESS="unix:path=${XDG_RUNTIME_DIR}/bus"
+supervisor=supervise-daemon
+command="/usr/bin/pipewire"
diff --git a/rc/.config/rc/runlevels/gui/pipewire-pulse b/rc/.config/rc/runlevels/gui/pipewire-pulse
new file mode 100755
index 0000000..af7de86
--- /dev/null
+++ b/rc/.config/rc/runlevels/gui/pipewire-pulse
@@ -0,0 +1,12 @@
+#!/sbin/openrc-run
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License, v2 or later
+
+depend() {
+ need pipewire dbus
+}
+
+export DBUS_SESSION_BUS_ADDRESS="unix:path=${XDG_RUNTIME_DIR}/bus"
+supervisor=supervise-daemon
+command="/usr/bin/pipewire"
+command_args="-c pipewire-pulse.conf"
diff --git a/rc/.config/rc/runlevels/gui/swaybg b/rc/.config/rc/runlevels/gui/swaybg
new file mode 100755
index 0000000..f21c1db
--- /dev/null
+++ b/rc/.config/rc/runlevels/gui/swaybg
@@ -0,0 +1,5 @@
+#!/sbin/openrc-run
+
+supervisor=supervise-daemon
+command="/usr/bin/swaybg"
+command_args="-i /home/lain/Desktop/mousewall3.jpg -m fill"
diff --git a/rc/.config/rc/runlevels/gui/wireplumber b/rc/.config/rc/runlevels/gui/wireplumber
new file mode 100755
index 0000000..ea4c6f2
--- /dev/null
+++ b/rc/.config/rc/runlevels/gui/wireplumber
@@ -0,0 +1,11 @@
+#!/sbin/openrc-run
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License, v2 or later
+
+depend() {
+ need pipewire dbus
+}
+
+DBUS_SESSION_BUS_ADDRESS="unix:path=${XDG_RUNTIME_DIR}/bus"
+supervisor=supervise-daemon
+command="/usr/bin/wireplumber"