birdwm

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit fb52422f75c4edacf040660a6599ad461dad7a71
parent 795b28a5a26fde2b595b62dd798fe391931dff5e
Author: grouse <bdmfegys@duck.com>
Date:   Mon,  1 Jan 2024 15:31:38 -0500

add comments to commands section of config.def.h

Diffstat:
Mconfig.def.h | 11++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -113,13 +113,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" }; -static const char *wallpapergif[] = { "xwallpapergif" }; -static const char *restarter[] = { "restarter", NULL}; -static const char *volup[] = { "volume.sh", "up", 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 */ +/* 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[] = { "librewolf", NULL}; +static const char *firefox[] = { "librewolf", NULL}; /* browser shortcut */ #include "exitdwm.c"