aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/wayland
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2024-02-11 19:13:51 -0600
committerToby Vincent <tobyv@tobyvin.dev>2024-02-11 19:13:51 -0600
commit165a3405b9c91ff0e7a8f7e9dfae23d2862564a9 (patch)
treecf3b3257f76a455745dc8a2888f4ab9ccbe20615 /wayland
parent5676d1ff4ea9ea01cfeaf41730dae296c720edec (diff)
fix: stop enabling wayland services
Diffstat (limited to 'wayland')
-rwxr-xr-xwayland/install.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/wayland/install.sh b/wayland/install.sh
deleted file mode 100755
index 2e9fe03..0000000
--- a/wayland/install.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-printf "%s: Installing services\n" "$0"
-
-for pkgname in physlock wl-mpris-idle-inhibit; do
- if command -v "$pkgname" >/dev/null; then
- systemctl --user enable --no-block $pkgname.service
- else
- printf "%s: $pkgname not found, skipping...\n" "$0"
- fi
-done