diff options
| author | stkhan <personal@slickd.xyz> | 2021-05-18 19:41:15 -0500 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2021-05-18 19:41:15 -0500 |
| commit | 806a695d6fbffce479f01b8918e089da0d011faf (patch) | |
| tree | dca57078417b3de85156aa7b427fb3ab697d3c2a /dwm-6.2/autostart.diff | |
| parent | 9fe978216eb61407feb3bc53b2486ef238f250d9 (diff) | |
Reworked everything
Diffstat (limited to 'dwm-6.2/autostart.diff')
| -rw-r--r-- | dwm-6.2/autostart.diff | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/dwm-6.2/autostart.diff b/dwm-6.2/autostart.diff deleted file mode 100644 index 0f9e4d1..0000000 --- a/dwm-6.2/autostart.diff +++ /dev/null @@ -1,40 +0,0 @@ -t 5918623c5bd7fda155bf9dc3d33890c4ae1722d0 -Author: Simon Bremer <simon.bremer@tum.de> -Date: Thu Dec 22 17:31:07 2016 +0100 - - Applied and fixed autostart patch for previous version; - -diff --git a/dwm.c b/dwm.c -index d27cb67..066ed71 100644 ---- a/dwm.c -+++ b/dwm.c -@@ -194,6 +194,7 @@ static void resizeclient(Client *c, int x, int y, int w, int h); - static void resizemouse(const Arg *arg); - static void restack(Monitor *m); - static void run(void); -+static void runAutostart(void); - static void scan(void); - static int sendevent(Client *c, Atom proto); - static void sendmon(Client *c, Monitor *m); -@@ -1386,6 +1387,12 @@ run(void) - } - - void -+runAutostart(void) { -+ system("cd ~/.dwm; ./autostart_blocking.sh"); -+ system("cd ~/.dwm; ./autostart.sh &"); -+} -+ -+void - scan(void) - { - unsigned int i, num; -@@ -2145,6 +2152,7 @@ main(int argc, char *argv[]) - checkotherwm(); - setup(); - scan(); -+ runAutostart(); - run(); - cleanup(); - XCloseDisplay(dpy); - |