summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorbtkoch <brandon@brandon-desktop.localdomain>2023-12-14 11:20:22 -0500
committerbtkoch <brandon@brandon-desktop.localdomain>2023-12-14 11:20:22 -0500
commit0475ad28d9398fdfeec0c0719acf3ee8e1e98cbe (patch)
treea08af7446888692a450d559e517f5e92f45df150 /config.h
parentb8ed6bb138b28ba3632b51b840b6d1be5e4decec (diff)
add keybind for thunderbird, flameshot
Diffstat (limited to 'config.h')
-rwxr-xr-xconfig.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/config.h b/config.h
index 335b083..32ef02a 100755
--- a/config.h
+++ b/config.h
@@ -71,8 +71,11 @@ static const Layout layouts[] = {
static char dmenumon[2] = "1"; /* component of dmenucmd, manipulated in spawn() */
static const char *dmenucmd[] = { "dmenu_run", NULL };
static const char *termcmd[] = { "st", NULL };
+static const char *rsscmd[] = { "st", "newsboat", NULL };
static const char *browsercmd[] = { "brave", "--password-store=basic", NULL };
static const char *discordcmd[] = { "com.discordapp.Discord", NULL };
+static const char *screenshotcmd[] = { "flameshot", "gui", NULL };
+static const char *mailcmd[] = { "thunderbird", NULL };
/* media keys */
static const char *upvol[] = { "/usr/bin/pactl", "set-sink-volume", "60", "+5%", NULL };
@@ -88,7 +91,10 @@ static const Key keys[] = {
{ MODKEY, XK_d, spawn, {.v = dmenucmd } },
{ MODKEY, XK_Return, spawn, {.v = termcmd } },
{ MODKEY, XK_w, spawn, {.v = browsercmd } },
+ { MODKEY|ShiftMask, XK_s, spawn, {.v = screenshotcmd } },
{ MODKEY|ShiftMask, XK_d, spawn, {.v = discordcmd } },
+ { MODKEY, XK_n, spawn, {.v = rsscmd } },
+ { MODKEY, XK_e, spawn, {.v = mailcmd } },
{ MODKEY, XK_b, togglebar, {0} },
{ MODKEY, XK_j, focusstack, {.i = +1 } },
{ MODKEY, XK_k, focusstack, {.i = -1 } },