Add scrren shot controller

This commit is contained in:
Anas Elgarhy 2022-04-24 09:08:54 +02:00
parent 831fd5e34e
commit 1b0fb061e7
1 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,7 @@
/* def */
#define WEBBROWSER "google-chrome-stable"
#define TERMINAL "alacritty"
#define SCREENSHOT "spectacle"
/* appearance */
static const unsigned int borderpx = 1; /* border pixel of windows */
static const unsigned int gappx = 3; /* gaps size between windows */
@ -150,6 +151,8 @@ static Key keys[] = {
{ 0, XF86XK_AudioPrev, spawn, SHCMD("playerctl previous") },
// Mute and unmute mic
{ 0, XF86XK_AudioMicMute, spawn, SHCMD("pactl set-source-mute @DEFAULT_SOURCE@ toggle") },
// Take a screenshot
{ 0, XK_Print, spawn, SHCMD(SCREENSHOT) },
};
/* button definitions */