birdwm

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

commit f667a7287afab6d85ae56a3b0e553e142dfe826a
parent 970d8f0ac4e3047dcac794430f69f47c2a0b9f8e
Author: mrgrouse <bdmfegys@duck.com>
Date:   Mon, 23 Sep 2024 18:09:06 -0400

config.def.h: fix innacurate copied comment for screenshot script array, add (bir)dmenu-emoji.sh emoji keybind, accessible via MODKEY+E

Diffstat:
Mconfig.def.h | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/config.def.h b/config.def.h @@ -129,7 +129,8 @@ static const char *wallpaper[] = { "nsxiv", "-t", WALLPAPERDIR, NULL }; static const char *wallpapergif[] = { "nsxiv", "-t", GIFDIR, NULL }; /* 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 *browser[] = { "io.gitlab.librewolf-community" }; /* browser shortcut */ -static const char *screenshot[] = { "screenshot.sh" }; /* browser shortcut */ +static const char *screenshot[] = { "screenshot.sh" }; /* screenshot script */ +static const char *emojiscript[] = { "dmenu-emoji.sh" }; /* (bir)dmenu emoji finder */ /* pulseaudio script for setting volume, called by XF86 keys, found in 'extras' folder */ static const char *volup[] = { "volume.sh", "up", NULL}; @@ -146,6 +147,7 @@ static const Key keys[] = { { MODKEY, XK_g, spawn, {.v = wallpapergif } }, { MODKEY|ShiftMask, XK_j, spawn, {.v = restarter } }, { MODKEY, XK_f, spawn, {.v = browser } }, + { MODKEY, XK_e, spawn, {.v = emojiscript } }, { WINKEY|ShiftMask, XK_s, spawn, {.v = screenshot} }, { 0, XF86XK_AudioRaiseVolume, spawn, {.v = volup} }, { 0, XF86XK_AudioLowerVolume, spawn, {.v = voldown} },