Re-order autostart

This commit is contained in:
Sravan Balaji
2024-09-03 14:58:33 -04:00
parent eab33c78c5
commit 10c865c57f
2 changed files with 4 additions and 4 deletions

View File

@@ -99,6 +99,8 @@ static int log_level = WLR_ERROR;
#+BEGIN_SRC c :tangle config.h #+BEGIN_SRC c :tangle config.h
#if AUTOSTART_PATCH #if AUTOSTART_PATCH
static const char *const autostart[] = { 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/libexec/polkit-gnome-authentication-agent-1", NULL,
"/usr/bin/kdeconnectd", "--replace", NULL, "/usr/bin/kdeconnectd", "--replace", NULL,
"/usr/bin/foot", "-s", NULL, "/usr/bin/foot", "-s", NULL,
@@ -107,8 +109,6 @@ static const char *const autostart[] = {
"/usr/bin/syncthing-gtk", NULL, "/usr/bin/syncthing-gtk", NULL,
"/usr/bin/openrgb", NULL, "/usr/bin/openrgb", NULL,
"/usr/bin/udiskie", "-a", "-n", "-s", NULL, "/usr/bin/udiskie", "-a", "-n", "-s", NULL,
"/usr/bin/shikane", NULL,
"/usr/bin/bash", "/home/sravan/.azotebg", NULL,
NULL /* terminate */ NULL /* terminate */
}; };
#endif // AUTOSTART_PATCH #endif // AUTOSTART_PATCH

View File

@@ -20,6 +20,8 @@ static int log_level = WLR_ERROR;
#if AUTOSTART_PATCH #if AUTOSTART_PATCH
static const char *const autostart[] = { 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/libexec/polkit-gnome-authentication-agent-1", NULL,
"/usr/bin/kdeconnectd", "--replace", NULL, "/usr/bin/kdeconnectd", "--replace", NULL,
"/usr/bin/foot", "-s", NULL, "/usr/bin/foot", "-s", NULL,
@@ -28,8 +30,6 @@ static const char *const autostart[] = {
"/usr/bin/syncthing-gtk", NULL, "/usr/bin/syncthing-gtk", NULL,
"/usr/bin/openrgb", NULL, "/usr/bin/openrgb", NULL,
"/usr/bin/udiskie", "-a", "-n", "-s", NULL, "/usr/bin/udiskie", "-a", "-n", "-s", NULL,
"/usr/bin/shikane", NULL,
"/usr/bin/bash", "/home/sravan/.azotebg", NULL,
NULL /* terminate */ NULL /* terminate */
}; };
#endif // AUTOSTART_PATCH #endif // AUTOSTART_PATCH