From 4c40a4dc245f7715f4891ed02d71475628e7a959 Mon Sep 17 00:00:00 2001 From: stkhan Date: Mon, 20 Jun 2022 19:54:29 +0000 Subject: new directory structure --- wm/dwm-6.3/cmd.h | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 wm/dwm-6.3/cmd.h (limited to 'wm/dwm-6.3/cmd.h') diff --git a/wm/dwm-6.3/cmd.h b/wm/dwm-6.3/cmd.h new file mode 100644 index 0000000..e734f59 --- /dev/null +++ b/wm/dwm-6.3/cmd.h @@ -0,0 +1,4 @@ +/* regular shell command spawner using /bin/sh */ +#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } } +/* some things need bash */ +#define BASHCMD(cmd) { .v = (const char*[]){ "/bin/bash", "-c", cmd, NULL } } -- cgit v1.2.3