From f42aa2e0d02ada2b21706c431a607801f1524d3b Mon Sep 17 00:00:00 2001 From: Olivia Mackintosh Date: Mon, 8 Aug 2022 03:31:48 +0200 Subject: Add media keys --- config.h | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) (limited to 'config.h') diff --git a/config.h b/config.h index 8532d39..f5fbc87 100644 --- a/config.h +++ b/config.h @@ -1,6 +1,5 @@ -/* See LICENSE file for copyright and license details. */ +#include -/* appearance */ static const unsigned int borderpx = 1; /* border pixel of windows */ static const unsigned int snap = 32; /* snap pixel */ static const int swallowfloating = 0; /* 1 means swallow floating windows by default */ @@ -55,13 +54,19 @@ static const Layout layouts[] = { { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \ { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} }, -/* helper for spawning shell commands in the pre dwm-5.0 fashion */ -#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } } /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; static const char *termcmd[] = { "st", NULL }; +static const char *browsercmd[] = { "chromium", NULL }; + +static const char *volume_toggle[] = { "amixer", "set", "Master", "toggle", NULL }; +static const char *volume_down[] = { "amixer", "set", "Master", "5%-", NULL }; +static const char *volume_up[] = { "amixer", "set", "Master", "5%+", NULL }; +static const char *mic_toggle[] = { "amixer", "set", "Capture", "toggle", NULL }; +static const char *brightness_down[] = { "brightnessctl", "s", "5%-", NULL }; +static const char *brightness_up[] = { "brightnessctl", "s", "5%+", NULL }; static Key keys[] = { /* modifier key function argument */ @@ -98,6 +103,15 @@ static Key keys[] = { TAGKEYS( XK_8, 7) TAGKEYS( XK_9, 8) { MODKEY|ShiftMask, XK_q, quit, {0} }, + { MODKEY|ShiftMask, XK_b, spawn, {.v = browsercmd } }, + + // Media keys + { 0, XF86XK_AudioMute, spawn, {.v = volume_toggle} }, + { 0, XF86XK_AudioLowerVolume, spawn, {.v = volume_down} }, + { 0, XF86XK_AudioRaiseVolume, spawn, {.v = volume_up} }, + { 0, XF86XK_AudioMicMute, spawn, {.v = mic_toggle} }, + { 0, XF86XK_MonBrightnessDown, spawn, {.v = brightness_down} }, + { 0, XF86XK_MonBrightnessUp, spawn, {.v = brightness_up} }, }; /* button definitions */ -- cgit v1.2.3