From 10c865c57f9269744ff58fb43fee167abbebb6eb Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Tue, 3 Sep 2024 14:58:33 -0400 Subject: [PATCH] Re-order autostart --- README.org | 4 ++-- config.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.org b/README.org index 0a0c806..14848e3 100644 --- a/README.org +++ b/README.org @@ -99,6 +99,8 @@ static int log_level = WLR_ERROR; #+BEGIN_SRC c :tangle config.h #if AUTOSTART_PATCH static const char *const autostart[] = { + "/usr/bin/shikane", NULL, + "/usr/bin/bash", "/home/sravan/.azotebg", NULL, "/usr/libexec/polkit-gnome-authentication-agent-1", NULL, "/usr/bin/kdeconnectd", "--replace", NULL, "/usr/bin/foot", "-s", NULL, @@ -107,8 +109,6 @@ static const char *const autostart[] = { "/usr/bin/syncthing-gtk", NULL, "/usr/bin/openrgb", NULL, "/usr/bin/udiskie", "-a", "-n", "-s", NULL, - "/usr/bin/shikane", NULL, - "/usr/bin/bash", "/home/sravan/.azotebg", NULL, NULL /* terminate */ }; #endif // AUTOSTART_PATCH diff --git a/config.h b/config.h index 681198c..768d82f 100644 --- a/config.h +++ b/config.h @@ -20,6 +20,8 @@ static int log_level = WLR_ERROR; #if AUTOSTART_PATCH static const char *const autostart[] = { + "/usr/bin/shikane", NULL, + "/usr/bin/bash", "/home/sravan/.azotebg", NULL, "/usr/libexec/polkit-gnome-authentication-agent-1", NULL, "/usr/bin/kdeconnectd", "--replace", NULL, "/usr/bin/foot", "-s", NULL, @@ -28,8 +30,6 @@ static const char *const autostart[] = { "/usr/bin/syncthing-gtk", NULL, "/usr/bin/openrgb", NULL, "/usr/bin/udiskie", "-a", "-n", "-s", NULL, - "/usr/bin/shikane", NULL, - "/usr/bin/bash", "/home/sravan/.azotebg", NULL, NULL /* terminate */ }; #endif // AUTOSTART_PATCH