From 5867d3723d7e3a0ed654a30973d4db59eaee4911 Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Sun, 22 Sep 2024 19:40:12 -0400 Subject: [PATCH] Update autostart processes --- README.org | 16 +++++++++++++--- config.h | 16 +++++++++++++--- 2 files changed, 26 insertions(+), 6 deletions(-) diff --git a/README.org b/README.org index 5e797a4..0c174c9 100644 --- a/README.org +++ b/README.org @@ -180,17 +180,27 @@ static int log_level = WLR_ERROR; #+BEGIN_SRC c :tangle config.h #if AUTOSTART_PATCH static const char *const autostart[] = { + /* Display / Compositor Setup */ "/usr/bin/shikane", NULL, "/usr/bin/bash", "/home/sravan/.azotebg", NULL, + "/usr/bin/gammastep", "-x", NULL, + /* Background Processes */ "/usr/libexec/polkit-gnome-authentication-agent-1", NULL, "/usr/bin/kdeconnectd", "--replace", NULL, "/usr/bin/bash", "/home/sravan/.scripts/dunst.sh", "--on", NULL, + "/usr/bin/wl-paste", "--type", "text", "--watch", "cliphist", "store", NULL, + "/usr/bin/wl-paste", "--type", "image", "--watch", "cliphist", "store", NULL, + /* Tray Applications */ + "/usr/bin/gammastep-indicator", NULL, + "/usr/bin/blueman-applet", NULL, + "/usr/bin/nm-applet", NULL, + "/usr/bin/kdeconnect-indicator", NULL, + "/usr/bin/flameshot", NULL, + "/usr/bin/udiskie", "-a", "-n", "-s", NULL, + /* GUI Applications */ "/usr/bin/nextcloud", NULL, "/usr/bin/syncthing-gtk", NULL, "/usr/bin/openrgb", NULL, - "/usr/bin/udiskie", "-a", "-n", "-s", NULL, - "wl-paste", "--type", "text", "--watch", "cliphist", "store", NULL, - "wl-paste", "--type", "image", "--watch", "cliphist", "store", NULL, NULL /* terminate */ }; #endif // AUTOSTART_PATCH diff --git a/config.h b/config.h index 4402d1a..eca130f 100644 --- a/config.h +++ b/config.h @@ -30,17 +30,27 @@ static int log_level = WLR_ERROR; #if AUTOSTART_PATCH static const char *const autostart[] = { + /* Display / Compositor Setup */ "/usr/bin/shikane", NULL, "/usr/bin/bash", "/home/sravan/.azotebg", NULL, + "/usr/bin/gammastep", "-x", NULL, + /* Background Processes */ "/usr/libexec/polkit-gnome-authentication-agent-1", NULL, "/usr/bin/kdeconnectd", "--replace", NULL, "/usr/bin/bash", "/home/sravan/.scripts/dunst.sh", "--on", NULL, + "/usr/bin/wl-paste", "--type", "text", "--watch", "cliphist", "store", NULL, + "/usr/bin/wl-paste", "--type", "image", "--watch", "cliphist", "store", NULL, + /* Tray Applications */ + "/usr/bin/gammastep-indicator", NULL, + "/usr/bin/blueman-applet", NULL, + "/usr/bin/nm-applet", NULL, + "/usr/bin/kdeconnect-indicator", NULL, + "/usr/bin/flameshot", NULL, + "/usr/bin/udiskie", "-a", "-n", "-s", NULL, + /* GUI Applications */ "/usr/bin/nextcloud", NULL, "/usr/bin/syncthing-gtk", NULL, "/usr/bin/openrgb", NULL, - "/usr/bin/udiskie", "-a", "-n", "-s", NULL, - "wl-paste", "--type", "text", "--watch", "cliphist", "store", NULL, - "wl-paste", "--type", "image", "--watch", "cliphist", "store", NULL, NULL /* terminate */ }; #endif // AUTOSTART_PATCH