summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xservices7
1 files changed, 3 insertions, 4 deletions
diff --git a/services b/services
index 3bdc2ba..119b68f 100755
--- a/services
+++ b/services
@@ -1,15 +1,14 @@
#!/bin/sh
-if [ "$1" == "setup" ]; then
- echo setting up user services...
+
+if command -v rc-service >/dev/null 2>&1; then
rc-update -U add pipewire-pulse gui
rc-update -U add mako gui
rc-update -U add wlsunset gui
rc-update -U add waybar gui
rc-update -U add swayidle gui
-fi
+ rc-update -U add wayland-pipewire-idle-inhibit gui
-if command -v rc-service >/dev/null 2>&1; then
# run openrc user services
openrc -U gui
else