commit 37b5704e93ac67ad69408a3535138ea4a4460b81
parent 6758cec0647b7aef3d01c45a45cf0e447d8d655e
Author: grouse <bdmfegys@duck.com>
Date: Sat, 3 Feb 2024 20:57:07 -0500
simplify config.def.h custom commands
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/config.def.h b/config.def.h
@@ -114,14 +114,14 @@ static const char *dmenucmd[] = { "dmenu_run", "-i", NULL };
static const char *termcmd[] = { "birdterm", NULL };
/*static const char *wallpaper[] = { "nsxiv", "-t", "/home/tetraonini/Pictures/wallpapers/\*.png", NULL }; */
/*static const char *wallpapergif[] = { "nsxiv", "-t", "/home/tetraonini/Pictures/wallpapers/gif/\*.gif", NULL }; */
-static const char *wallpaper[] = { "xwallpaper" }; /* calling wallpaper picker script, utilizes nsxiv */
-static const char *wallpapergif[] = { "xwallpapergif" }; /* calling gif wallpaper picker script, utilizes nsxiv */
-static const char *restarter[] = { "restarter", NULL}; /* dmenu script for restarting daemons and getting system info through dunst */
+static const char wallpaper[] = "xwallpaper"; /* calling wallpaper picker script, utilizes nsxiv */
+static const char wallpapergif[] = "xwallpapergif"; /* calling gif wallpaper picker script, utilizes nsxiv */
+static const char restarter[] = "restarter"; /* dmenu script for restarting daemons and getting system info through dunst */
+static const char firefox[] = "net.mullvad.MullvadBrowser"; /* browser shortcut */
/* pulseaudio script for setting volume, called by XF86 keys */
static const char *volup[] = { "volume.sh", "up", NULL};
static const char *voldown[] = { "volume.sh", "down", NULL};
static const char *volmute[] = { "volume.sh", "mute", NULL};
-static const char *firefox[] = { "net.mullvad.MullvadBrowser", NULL}; /* browser shortcut */
#include "exitdwm.c"