aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configuration.nix2
-rwxr-xr-xpackages/dwm/autostart.sh31
2 files changed, 20 insertions, 13 deletions
diff --git a/configuration.nix b/configuration.nix
index ed8faf8..7c14db0 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -43,6 +43,8 @@
hardware.bluetooth.enable = false;
services.blueman.enable = false;
+ programs.kdeconnect.enable = true;
+
# Enable sound.
security.rtkit.enable = true;
services.pipewire = {
diff --git a/packages/dwm/autostart.sh b/packages/dwm/autostart.sh
index b2290aa..6345742 100755
--- a/packages/dwm/autostart.sh
+++ b/packages/dwm/autostart.sh
@@ -39,25 +39,30 @@ spew() {
##### Autostart {{{
- echo "[Autostart]: Running daemons";
+echo "[Autostart]: Running daemons";
- # Key daemon
- spew "shotkey" shotkey;
+# Key daemon
+spew "shotkey" shotkey;
- # Wallpaper
- run "" ~/.fehbg;
+# Wallpaper
+run "" ~/.fehbg;
- # Notification daemon
- spew "dunst" dunst -config ~/.config/dunst/dunstrc;
+# Notification daemon
+spew "dunst" dunst -config ~/.config/dunst/dunstrc;
- # Compositor
- spew "picom" picom --config ~/.config/picom.conf;
+# Compositor
+spew "picom" picom --config ~/.config/picom.conf;
- # Scheduler
- spew "remind" remind -k'notify-send -a reminder %s' -z10 "$REMINDER_FILE";
+# Scheduler
+spew "remind" remind -k'notify-send -a reminder %s' -z10 "$REMINDER_FILE";
- # Battery watcher
- run "" ~/scripts/battery-watch.sh start;
+# Battery watcher
+run "" ~/scripts/battery-watch.sh start;
+
+# KDEconnect connect
+# run "" kdeconnect-cli --refresh;
+
+once "easyeffects" easyeffects --gapplication-service;
# }}}