dwm: Add missing NULLs to commands

This did seem to work fine without the NULLs, however.
This commit is contained in:
Donovan Glover 2024-08-28 20:09:22 -04:00
parent aaef3ecf8b
commit 638794529a
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -67,8 +67,8 @@ in
#define MODKEY Mod4Mask
static char dmenumon[2] = "0";
static const char *dmenucmd[] = { "rofi", "-show", "drun" };
static const char *quitcmd[] = { "kill", "xinit" };
static const char *dmenucmd[] = { "rofi", "-show", "drun", NULL };
static const char *quitcmd[] = { "kill", "xinit", NULL };
static const char *termcmd[] = { "kitty", NULL };
static const char *brighter[] = { "brightnessctl", "set", "5%+", NULL };
static const char *dimmer[] = { "brightnessctl", "set", "5%-", NULL };