From de482a613a57b9e56cdb799083144d627aa18894 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 30e0270..c67d39d 100644 --- a/README.org +++ b/README.org @@ -84,6 +84,8 @@ static int log_level = WLR_ERROR; #+BEGIN_SRC c :tangle config.h 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, @@ -92,8 +94,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 */ }; #+END_SRC diff --git a/config.h b/config.h index c281f65..841b2c0 100644 --- a/config.h +++ b/config.h @@ -19,6 +19,8 @@ static const float fullscreen_bg[] = {0.1f, 0.1f, 0.1f, 1.0f}; /* You ca static int log_level = WLR_ERROR; 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, @@ -27,8 +29,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 */ };