Improve the code and reformat it
This commit is contained in:
parent
59fa9423b5
commit
0f156ff3a9
39 changed files with 6041 additions and 2166 deletions
97
src/config.h
97
src/config.h
|
@ -1,66 +1,79 @@
|
|||
/* See LICENSE file for copyright and license details. */
|
||||
|
||||
#ifndef CONFIG_H
|
||||
#define CONFIG_H
|
||||
/* def */
|
||||
#define WEBBROWSER "firefox-developer-edition"
|
||||
#define TERMINAL "kitty"
|
||||
#define WEBBROWSER "firefox-developer-edition"
|
||||
#define TERMINAL "kitty"
|
||||
|
||||
/* appearance */
|
||||
static const unsigned int borderpx = 1; /* border pixel of windows */
|
||||
static const unsigned int gappx = 3; /* gaps size between windows */
|
||||
static const unsigned int snap = 32; /* snap pixel */
|
||||
static const unsigned int borderpx = 1; /* border pixel of windows */
|
||||
static const unsigned int gappx = 3; /* gaps size between windows */
|
||||
static const unsigned int snap = 32; /* snap pixel */
|
||||
static const unsigned int systraypinning = 0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */
|
||||
static const unsigned int systrayonleft = 0; /* 0: systray in the right corner, >0: systray on left of status text */
|
||||
static const unsigned int systrayonleft = 0; /* 0: systray in the right corner, >0: systray on left of status text */
|
||||
static const unsigned int systrayspacing = 2; /* systray spacing */
|
||||
static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display systray on the first monitor, False: display systray on the last monitor*/
|
||||
static const int showsystray = 1; /* 0 means no systray */
|
||||
static const int showbar = 1; /* 0 means no bar */
|
||||
static const int topbar = 1; /* 0 means bottom bar */
|
||||
static const char *fonts[] = { "monospace:size=7", "Noto Color Emoji:size=8", "Nerd Font Mono:size=16:antialias=true:hinting=true" };
|
||||
static const char dmenufont[] = "monospace:size=8";
|
||||
static const int showsystray = 1; /* 0 means no systray */
|
||||
static const int showbar = 1; /* 0 means no bar */
|
||||
static const int topbar = 1; /* 0 means bottom bar */
|
||||
static const char *fonts[] = {"monospace:size=7", "Noto Color Emoji:size=8",
|
||||
"Nerd Font Mono:size=16:antialias=true:hinting=true"};
|
||||
static const char dmenufont[] = "monospace:size=8";
|
||||
|
||||
#ifndef STDDEF_H
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
#endif
|
||||
|
||||
#include "colors.h"
|
||||
|
||||
// Autostart programs
|
||||
static const char *const autostart[] = {
|
||||
// Start my build of slstatus
|
||||
"slstatus", NULL,
|
||||
// Keyboard layouts switch (requires setxkbmap)
|
||||
"setxkbmap", "-model", "pc101", "-layout", "us,ar", "-variant", ",,", "-option", "grp:win_space_toggle", NULL,
|
||||
// "xkbset", "exp", "=sticky", "-twokey", "-latchlock", NULL, // sticky keys
|
||||
"/bin/stickykeys", NULL, // sticky keys script
|
||||
// "picom", NULL, // Start compositor , for transparency
|
||||
"nitrogen", "--restore", NULL, // Restores the wallpaper
|
||||
"nm-applet", NULL, // Start the network manger
|
||||
"copyq", NULL, // clipboard manger
|
||||
NULL /* terminate */
|
||||
};
|
||||
// Start my build of slstatus
|
||||
"slstatus", NULL,
|
||||
// Keyboard layouts switch (requires setxkbmap)
|
||||
"setxkbmap", "-model", "pc101", "-layout", "us,ar", "-variant", ",,", "-option", "grp:win_space_toggle", NULL,
|
||||
// "xkbset", "exp", "=sticky", "-twokey", "-latchlock", NULL, // sticky keys
|
||||
"/bin/stickykeys", NULL, // sticky keys script
|
||||
// "picom", NULL, // Start compositor , for transparency
|
||||
"nitrogen", "--restore", NULL, // Restores the wallpaper
|
||||
"nm-applet", NULL, // Start the network manger
|
||||
"copyq", NULL, // clipboard manger
|
||||
NULL /* terminate */
|
||||
};
|
||||
|
||||
/* tagging */
|
||||
// static const char *tags[] = { "I", "II", "III", "IV", "V", "VI", "VII", "VIII", "IX" };
|
||||
// static const char *tags[] = { "", "", "", "", "", "", "", "", "" };
|
||||
static const char *tags[] = { "www", "dev", "sys", "chat", "img", "vid", "mus", "vbox", "gfx", ";" };
|
||||
static const char *tags[] = {"www", "dev", "sys", "chat", "img", "vid", "mus", "vbox", "gfx", ";"};
|
||||
|
||||
static const Rule rules[] = {
|
||||
/* xprop(1):
|
||||
* WM_CLASS(STRING) = instance, class
|
||||
* WM_NAME(STRING) = title
|
||||
*/
|
||||
/* class instance title tags mask isfloating monitor */
|
||||
{ "Gimp", NULL, NULL, 9, 1, -1 },
|
||||
// { WEBBROWSER, NULL, NULL, 1 << 8, 0, -1 },
|
||||
{ "Tor Browser", NULL, NULL, 10, 0, -1 },
|
||||
{ "keepassxc", NULL, NULL, 10, 0, -1 },
|
||||
{ "firefoxdeveloperedition", NULL, NULL, 1 << 6, 0, -1 },
|
||||
{ "discord", NULL, NULL, 4 << 5, 0, -1 },
|
||||
/* xprop(1):
|
||||
* WM_CLASS(STRING) = instance, class
|
||||
* WM_NAME(STRING) = title
|
||||
*/
|
||||
/* class instance title tags mask isfloating monitor */
|
||||
{"Gimp", NULL, NULL, 9, 1, -1},
|
||||
// { WEBBROWSER, NULL, NULL, 1 << 8, 0, -1 },
|
||||
{"Tor Browser", NULL, NULL, 10, 0, -1},
|
||||
{"keepassxc", NULL, NULL, 10, 0, -1},
|
||||
{"firefoxdeveloperedition", NULL, NULL, 1 << 6, 0, -1},
|
||||
{"discord", NULL, NULL, 4 << 5, 0, -1},
|
||||
|
||||
};
|
||||
|
||||
/* 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", norm_bg,
|
||||
"-nf", norm_fg, "-sb", sel_bg, "-sf", sel_fg, NULL};
|
||||
static const char *termcmd[] = {TERMINAL, NULL};
|
||||
/* layout(s) */
|
||||
static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
|
||||
static const int nmaster = 1; /* number of clients in master area */
|
||||
static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
|
||||
static const int nmaster = 1; /* number of clients in master area */
|
||||
static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */
|
||||
static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */
|
||||
|
||||
#include "layouts/layouts.h"
|
||||
#include "movestack.c"
|
||||
#include "keys/keys.h"
|
||||
#endif // CONFIG_H
|
||||
|
|
274
src/keys/keys.c
274
src/keys/keys.c
|
@ -1,196 +1,190 @@
|
|||
/* 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", norm_bg,
|
||||
"-nf", norm_fg, "-sb", sel_bg, "-sf", sel_fg, NULL };
|
||||
static const char *termcmd[] = { TERMINAL, NULL };
|
||||
#include "../config.h"
|
||||
#include "keys.h"
|
||||
|
||||
/* key definitions */
|
||||
#define MODKEY Mod4Mask // win/super key
|
||||
|
||||
#define TAGKEYS(CHAIN,KEY,TAG) \
|
||||
#define TAGKEYS(CHAIN, KEY, TAG) \
|
||||
{ MODKEY, CHAIN, KEY, view, {.ui = 1 << TAG} }, \
|
||||
{ MODKEY|ControlMask, CHAIN, KEY, toggleview, {.ui = 1 << TAG} }, \
|
||||
{ MODKEY|ShiftMask, CHAIN, KEY, tag, {.ui = 1 << TAG} }, \
|
||||
{ MODKEY|ControlMask|ShiftMask, CHAIN, KEY, toggletag, {.ui = 1 << TAG} },
|
||||
|
||||
// X11 keysym definitions
|
||||
#include <X11/XF86keysym.h> // req (libxinerama1 and libxinerama-dev)
|
||||
|
||||
|
||||
static Key keys[] = {
|
||||
/* modifier chain key key function argument */
|
||||
/* ---------------------------------- Apps Keys ---------------------------------- */
|
||||
// Dmenu (launcher)
|
||||
{ MODKEY|ShiftMask, -1, XK_d, spawn, {.v = dmenucmd } },
|
||||
// Rofi launcher (small)
|
||||
{ MODKEY|ShiftMask|ControlMask, -1, XK_d, spawn, SHCMD("rofi -show drun") },
|
||||
// Start the main terminal
|
||||
{ MODKEY, -1, XK_Return, spawn, {.v = termcmd } },
|
||||
/* modifier chain key key function argument */
|
||||
/* ---------------------------------- Apps Keys ---------------------------------- */
|
||||
// Dmenu (launcher)
|
||||
{MODKEY | ShiftMask, -1, XK_d, spawn, {.v = dmenucmd}},
|
||||
// Rofi launcher (small)
|
||||
{MODKEY | ShiftMask | ControlMask, -1, XK_d, spawn, SHCMD("rofi -show drun")},
|
||||
// Start the main terminal
|
||||
{MODKEY, -1, XK_Return, spawn, {.v = termcmd}},
|
||||
// Start the alacritty terminal
|
||||
{ MODKEY, XK_t, XK_a, spawn, SHCMD("alacritty") },
|
||||
// Start the alacritty terminal with tmux
|
||||
// { MODKEY, XK_t, XK_a|ShiftMask, spawn, SHCMD("alacritty -e tmux") },
|
||||
{MODKEY, XK_t, XK_a, spawn, SHCMD("alacritty")},
|
||||
// Start the alacritty terminal with tmux
|
||||
// { MODKEY, XK_t, XK_a|ShiftMask, spawn, SHCMD("alacritty -e tmux") },
|
||||
// kitty
|
||||
{ MODKEY, XK_t, XK_k, spawn, SHCMD("kitty") },
|
||||
{MODKEY, XK_t, XK_k, spawn, SHCMD("kitty")},
|
||||
// kitty with tmux
|
||||
// { MODKEY, XK_t, ShiftMask|XK_k, spawn, SHCMD("kitty -e tmux") },
|
||||
/************************************* File browsers *************************************/
|
||||
// { MODKEY, XK_t, ShiftMask|XK_k, spawn, SHCMD("kitty -e tmux") },
|
||||
/************************************* File browsers *************************************/
|
||||
// GUI filebrowser
|
||||
{ MODKEY|ShiftMask, XK_f, XK_g, spawn, SHCMD("~/.scripts/filebrowser") },
|
||||
// Rofi file browser (small)
|
||||
{ MODKEY|ShiftMask, XK_f, XK_f, spawn, SHCMD("rofi -show filebrowser") },
|
||||
{MODKEY | ShiftMask, XK_f, XK_g, spawn, SHCMD("~/.scripts/filebrowser")},
|
||||
// Rofi file browser (small)
|
||||
{MODKEY | ShiftMask, XK_f, XK_f, spawn, SHCMD("rofi -show filebrowser")},
|
||||
// Terminal file manager (ranger)
|
||||
{ MODKEY|ShiftMask, XK_f, XK_t, spawn, SHCMD(TERMINAL " -e ranger") },
|
||||
/************************************* Start the web browers *************************************/
|
||||
{MODKEY | ShiftMask, XK_f, XK_t, spawn, SHCMD(TERMINAL " -e ranger")},
|
||||
/************************************* Start the web browers *************************************/
|
||||
// Google chrome stable
|
||||
{ MODKEY, XK_w, XK_g, spawn, SHCMD("google-chrome-stable") },
|
||||
// Firefox-developer-edition
|
||||
{ MODKEY, XK_w, XK_f, spawn, SHCMD("firefox-developer-edition") },
|
||||
{MODKEY, XK_w, XK_g, spawn, SHCMD("google-chrome-stable")},
|
||||
// Firefox-developer-edition
|
||||
{MODKEY, XK_w, XK_f, spawn, SHCMD("firefox-developer-edition")},
|
||||
// Tor brower
|
||||
{ MODKEY, XK_w, XK_t, spawn, SHCMD("tor-browser") },
|
||||
/************************************* Start the caht/email/\* apps *************************************/
|
||||
// Discord
|
||||
{ MODKEY, XK_c, XK_d, spawn, SHCMD("discord") },
|
||||
{MODKEY, XK_w, XK_t, spawn, SHCMD("tor-browser")},
|
||||
/************************************* Start the caht/email/\* apps *************************************/
|
||||
// Discord
|
||||
{MODKEY, XK_c, XK_d, spawn, SHCMD("discord")},
|
||||
// Obsidian
|
||||
{ MODKEY, XK_c, XK_o, spawn, SHCMD("obsidian") },
|
||||
/************************************* Start the dev apps *************************************/
|
||||
// Jetbrains toolbox
|
||||
{ MODKEY, XK_a, XK_j, spawn, SHCMD("jetbrains-toolbox") },
|
||||
{MODKEY, XK_c, XK_o, spawn, SHCMD("obsidian")},
|
||||
/************************************* Start the dev apps *************************************/
|
||||
// Jetbrains toolbox
|
||||
{MODKEY, XK_a, XK_j, spawn, SHCMD("jetbrains-toolbox")},
|
||||
// NeoVim
|
||||
{ MODKEY, XK_a, XK_n, spawn, SHCMD(TERMINAL " -e nvim") },
|
||||
{MODKEY, XK_a, XK_n, spawn, SHCMD(TERMINAL " -e nvim")},
|
||||
// Vim
|
||||
{ MODKEY, XK_a, XK_v, spawn, SHCMD(TERMINAL " -e vim") },
|
||||
{MODKEY, XK_a, XK_v, spawn, SHCMD(TERMINAL " -e vim")},
|
||||
// emacs
|
||||
{ MODKEY, XK_a, XK_e, spawn, SHCMD("emacs") },
|
||||
/************************************* Start personalize apps *************************************/
|
||||
{MODKEY, XK_a, XK_e, spawn, SHCMD("emacs")},
|
||||
/************************************* Start personalize apps *************************************/
|
||||
// nitrogen
|
||||
{ MODKEY, XK_p, XK_b, spawn, SHCMD("nitrogen") },
|
||||
{MODKEY, XK_p, XK_b, spawn, SHCMD("nitrogen")},
|
||||
// nm-connection-editor
|
||||
{ MODKEY, XK_p, XK_n, spawn, SHCMD("nm-connection-editor") },
|
||||
/************************************* Start multi media apps *************************************/
|
||||
{ MODKEY, -1, XK_m, spawn, SHCMD("~/.scripts/luncher") },
|
||||
// cmus
|
||||
{MODKEY, XK_p, XK_n, spawn, SHCMD("nm-connection-editor")},
|
||||
/************************************* Start multi media apps *************************************/
|
||||
{MODKEY, -1, XK_m, spawn, SHCMD("~/.scripts/luncher")},
|
||||
// cmus
|
||||
// { MODKEY, XK_m, XK_c, spawn, SHCMD("sh -c \"" TERMINAL " -e cmus\" & sh -c \"cmus-rpc-rs --link\"") },
|
||||
// vlc
|
||||
// { MODKEY, XK_m, XK_v, spawn, SHCMD("vlc") },
|
||||
// vlc in the main terminal
|
||||
// { MODKEY|ShiftMask, XK_m, XK_v, spawn, SHCMD(TERMINAL "nvlc") },
|
||||
/************************************* Start the emoji piker apps *************************************/
|
||||
// Emoji selector (rofi)
|
||||
{ Mod4Mask, -1, XK_e, spawn, SHCMD("rofimoji") },
|
||||
/************************************* dwm keys *************************************/
|
||||
// Full screen mode
|
||||
{ MODKEY, -1, XK_f, fullscreen, {0} },
|
||||
// Toggle the slstatus bar (hide/show)
|
||||
{ MODKEY, -1, XK_b, togglebar, {0} },
|
||||
/************************************* Start the emoji piker apps *************************************/
|
||||
// Emoji selector (rofi)
|
||||
{Mod4Mask, -1, XK_e, spawn, SHCMD("rofimoji")},
|
||||
/************************************* dwm keys *************************************/
|
||||
// Full screen mode
|
||||
{MODKEY, -1, XK_f, fullscreen, {0}},
|
||||
// Toggle the slstatus bar (hide/show)
|
||||
{MODKEY, -1, XK_b, togglebar, {0}},
|
||||
// Change the focus
|
||||
{ MODKEY, -1, XK_j, focusstack, {.i = +1 } },
|
||||
{ MODKEY, -1, XK_k, focusstack, {.i = -1 } },
|
||||
{MODKEY, -1, XK_j, focusstack, {.i = +1}},
|
||||
{MODKEY, -1, XK_k, focusstack, {.i = -1}},
|
||||
// Change the stack layout (horizontal/virtecal)
|
||||
{ MODKEY, -1, XK_i, incnmaster, {.i = +1 } },
|
||||
{ MODKEY, -1, XK_d, incnmaster, {.i = -1 } },
|
||||
{MODKEY, -1, XK_i, incnmaster, {.i = +1}},
|
||||
{MODKEY, -1, XK_d, incnmaster, {.i = -1}},
|
||||
// Change the focus window size (in the tile mode)
|
||||
{ MODKEY, -1, XK_h, setmfact, {.f = -0.05} },
|
||||
{ MODKEY, -1, XK_l, setmfact, {.f = +0.05} },
|
||||
{MODKEY, -1, XK_h, setmfact, {.f = -0.05}},
|
||||
{MODKEY, -1, XK_l, setmfact, {.f = +0.05}},
|
||||
// { MODKEY, XK_Return, zoom, {0} },
|
||||
{ MODKEY, -1, XK_Tab, view, {0} },
|
||||
{MODKEY, -1, XK_Tab, view, {0}},
|
||||
|
||||
{ MODKEY|ShiftMask, -1, XK_j, movestack, {.i = +1 } },
|
||||
{ MODKEY|ShiftMask, -1, XK_k, movestack, {.i = -1 } },
|
||||
{MODKEY | ShiftMask, -1, XK_j, movestack, {.i = +1}},
|
||||
{MODKEY | ShiftMask, -1, XK_k, movestack, {.i = -1}},
|
||||
// Toogle styky mode
|
||||
{ MODKEY|ShiftMask, -1, XK_s, togglesticky, {0} },
|
||||
{MODKEY | ShiftMask, -1, XK_s, togglesticky, {0}},
|
||||
|
||||
// Quit from the foucsed window (kill)
|
||||
{ MODKEY, XK_q, XK_q, killclient, {0} },
|
||||
// Quit from the foucsed window (kill)
|
||||
{MODKEY, XK_q, XK_q, killclient, {0}},
|
||||
/************************* Switch between layouts *************************/
|
||||
// Tiled layout
|
||||
{ MODKEY, XK_s, XK_t, setlayout, {.v = &layouts[0]} },
|
||||
// Floating layout
|
||||
{ MODKEY, XK_s, XK_f, setlayout, {.v = &layouts[1]} },
|
||||
// Monocle layout
|
||||
{ MODKEY, XK_s, XK_m, setlayout, {.v = &layouts[2]} },
|
||||
// Tiled layout
|
||||
{MODKEY, XK_s, XK_t, setlayout, {.v = &layouts[0]}},
|
||||
// Floating layout
|
||||
{MODKEY, XK_s, XK_f, setlayout, {.v = &layouts[1]}},
|
||||
// Monocle layout
|
||||
{MODKEY, XK_s, XK_m, setlayout, {.v = &layouts[2]}},
|
||||
// Grid layout
|
||||
{ MODKEY, XK_s, XK_g, setlayout, {.v = &layouts[3]} },
|
||||
{MODKEY, XK_s, XK_g, setlayout, {.v = &layouts[3]}},
|
||||
// Spiral layout
|
||||
{ MODKEY, XK_s, XK_r, setlayout, {.v = &layouts[4]} },
|
||||
{MODKEY, XK_s, XK_r, setlayout, {.v = &layouts[4]}},
|
||||
// Dwindle layout
|
||||
{ MODKEY, XK_s, XK_d, setlayout, {.v = &layouts[5]} },
|
||||
{MODKEY, XK_s, XK_d, setlayout, {.v = &layouts[5]}},
|
||||
// Centerd master layout
|
||||
{ MODKEY, XK_s, XK_c, setlayout, {.v = &layouts[6]} },
|
||||
{MODKEY, XK_s, XK_c, setlayout, {.v = &layouts[6]}},
|
||||
// Centerd floating master layout
|
||||
{ MODKEY, XK_s, XK_x, setlayout, {.v = &layouts[7]} },
|
||||
{MODKEY, XK_s, XK_x, setlayout, {.v = &layouts[7]}},
|
||||
// Toggle between current layout and tile layout
|
||||
{ MODKEY, XK_s, XK_s, setlayout, {0} },
|
||||
{MODKEY, XK_s, XK_s, setlayout, {0}},
|
||||
|
||||
// Toggle floating window
|
||||
{ MODKEY|Mod1Mask, -1, XK_f, togglefloating, {0} },
|
||||
{MODKEY | Mod1Mask, -1, XK_f, togglefloating, {0}},
|
||||
// View all tags
|
||||
{ MODKEY, -1, XK_0, view, {.ui = ~0 } },
|
||||
{MODKEY, -1, XK_0, view, {.ui = ~0}},
|
||||
// Mirror the current tagg in all tags
|
||||
{ MODKEY|ShiftMask, -1, XK_0, tag, {.ui = ~0 } },
|
||||
{MODKEY | ShiftMask, -1, XK_0, tag, {.ui = ~0}},
|
||||
// I don't know
|
||||
{ MODKEY, -1, XK_comma, focusmon, {.i = -1 } },
|
||||
{ MODKEY, -1, XK_period, focusmon, {.i = +1 } },
|
||||
{ MODKEY|ShiftMask, -1, XK_comma, tagmon, {.i = -1 } },
|
||||
{ MODKEY|ShiftMask, -1, XK_period, tagmon, {.i = +1 } },
|
||||
{MODKEY, -1, XK_comma, focusmon, {.i = -1}},
|
||||
{MODKEY, -1, XK_period, focusmon, {.i = +1}},
|
||||
{MODKEY | ShiftMask, -1, XK_comma, tagmon, {.i = -1}},
|
||||
{MODKEY | ShiftMask, -1, XK_period, tagmon, {.i = +1}},
|
||||
/************************* Tag keys *************************/
|
||||
TAGKEYS( -1, XK_1, 0)
|
||||
TAGKEYS( -1, XK_2, 1)
|
||||
TAGKEYS( -1, XK_3, 2)
|
||||
TAGKEYS( -1, XK_4, 3)
|
||||
TAGKEYS( -1, XK_5, 4)
|
||||
TAGKEYS( -1, XK_6, 5)
|
||||
TAGKEYS( -1, XK_7, 6)
|
||||
TAGKEYS( -1, XK_8, 7)
|
||||
TAGKEYS( -1, XK_9, 8)
|
||||
TAGKEYS( -1, XK_semicolon, 9)
|
||||
/* ---------------------------------- Control Keys ---------------------------------- */
|
||||
// Brightness controllers (requires xbacklight)
|
||||
{ 0, -1, XF86XK_MonBrightnessUp, spawn, SHCMD("~/.scripts/brightness up") },
|
||||
{ 0, -1, XF86XK_MonBrightnessDown, spawn, SHCMD("~/.scripts/brightness down") },
|
||||
// Sound controllers (requires pamixer)
|
||||
{ 0, -1, XF86XK_AudioRaiseVolume, spawn, SHCMD("~/.scripts/volume up") },
|
||||
{ 0, -1, XF86XK_AudioLowerVolume, spawn, SHCMD("~/.scripts/volume down") },
|
||||
{ 0, -1, XF86XK_AudioMute, spawn, SHCMD("~/.scripts/volume mute") },
|
||||
// Media controls (requires playerctl)
|
||||
{ 0, -1, XF86XK_AudioPlay, spawn, SHCMD("playerctl play-pause") },
|
||||
{ 0, -1, XF86XK_AudioStop, spawn, SHCMD("playerctl stop") },
|
||||
{ 0, -1, XF86XK_AudioNext, spawn, SHCMD("playerctl next") },
|
||||
{ 0, -1, XF86XK_AudioPrev, spawn, SHCMD("playerctl previous") },
|
||||
TAGKEYS(-1, XK_1, 0)
|
||||
TAGKEYS(-1, XK_2, 1)
|
||||
TAGKEYS(-1, XK_3, 2)
|
||||
TAGKEYS(-1, XK_4, 3)
|
||||
TAGKEYS(-1, XK_5, 4)
|
||||
TAGKEYS(-1, XK_6, 5)
|
||||
TAGKEYS(-1, XK_7, 6)
|
||||
TAGKEYS(-1, XK_8, 7)
|
||||
TAGKEYS(-1, XK_9, 8)
|
||||
TAGKEYS(-1, XK_semicolon, 9)
|
||||
/* ---------------------------------- Control Keys ---------------------------------- */
|
||||
// Brightness controllers (requires xbacklight)
|
||||
{0, -1, XF86XK_MonBrightnessUp, spawn, SHCMD("~/.scripts/brightness up")},
|
||||
{0, -1, XF86XK_MonBrightnessDown, spawn, SHCMD("~/.scripts/brightness down")},
|
||||
// Sound controllers (requires pamixer)
|
||||
{0, -1, XF86XK_AudioRaiseVolume, spawn, SHCMD("~/.scripts/volume up")},
|
||||
{0, -1, XF86XK_AudioLowerVolume, spawn, SHCMD("~/.scripts/volume down")},
|
||||
{0, -1, XF86XK_AudioMute, spawn, SHCMD("~/.scripts/volume mute")},
|
||||
// Media controls (requires playerctl)
|
||||
{0, -1, XF86XK_AudioPlay, spawn, SHCMD("playerctl play-pause")},
|
||||
{0, -1, XF86XK_AudioStop, spawn, SHCMD("playerctl stop")},
|
||||
{0, -1, XF86XK_AudioNext, spawn, SHCMD("playerctl next")},
|
||||
{0, -1, XF86XK_AudioPrev, spawn, SHCMD("playerctl previous")},
|
||||
|
||||
{ Mod1Mask, -1, XK_F1, spawn, SHCMD("playerctl volume 0.0") },
|
||||
{ Mod1Mask, -1, XK_F2, spawn, SHCMD("playerctl volume 0.1-") },
|
||||
{ Mod1Mask, -1, XK_F3, spawn, SHCMD("playerctl volume 0.1+") },
|
||||
{Mod1Mask, -1, XK_F1, spawn, SHCMD("playerctl volume 0.0")},
|
||||
{Mod1Mask, -1, XK_F2, spawn, SHCMD("playerctl volume 0.1-")},
|
||||
{Mod1Mask, -1, XK_F3, spawn, SHCMD("playerctl volume 0.1+")},
|
||||
// Mute and unmute mic
|
||||
{ 0, -1, XF86XK_AudioMicMute, spawn, SHCMD("pactl set-source-mute @DEFAULT_SOURCE@ toggle") },
|
||||
// Take a screenshot
|
||||
{ 0, -1, XK_Print, spawn, SHCMD("~/.scripts/screenshot") },
|
||||
{ Mod1Mask, -1, XK_Print, spawn, SHCMD("~/.scripts/screenshot --region") },
|
||||
{ Mod2Mask, -1, XK_Print, spawn, SHCMD("~/.scripts/screenshot --activewindow") },
|
||||
{ Mod1Mask|Mod2Mask, -1, XK_Print, spawn, SHCMD("~/.scripts/screenshot --fullscreen --background --copy-image") },
|
||||
/* ---------------------------------- lock Keys ---------------------------------- */
|
||||
// Lock the screen
|
||||
{ MODKEY|ShiftMask, -1, XK_x, spawn, SHCMD("betterlockscreen -l dim") },
|
||||
{ 0, -1, XF86XK_Suspend, spawn, SHCMD("betterlockscreen -l dim") },
|
||||
// // Kill dwm (super + shift + alt + q)
|
||||
// { MODKEY|ShiftMask|Mod1Mask, -1, XK_q, quit, {0} },
|
||||
{0, -1, XF86XK_AudioMicMute, spawn, SHCMD("pactl set-source-mute @DEFAULT_SOURCE@ toggle")},
|
||||
// Take a screenshot
|
||||
{0, -1, XK_Print, spawn, SHCMD("~/.scripts/screenshot")},
|
||||
{Mod1Mask, -1, XK_Print, spawn, SHCMD("~/.scripts/screenshot --region")},
|
||||
{Mod2Mask, -1, XK_Print, spawn, SHCMD("~/.scripts/screenshot --activewindow")},
|
||||
{Mod1Mask | Mod2Mask, -1, XK_Print, spawn,
|
||||
SHCMD("~/.scripts/screenshot --fullscreen --background --copy-image")},
|
||||
/* ---------------------------------- lock Keys ---------------------------------- */
|
||||
// Lock the screen
|
||||
{MODKEY | ShiftMask, -1, XK_x, spawn, SHCMD("betterlockscreen -l dim")},
|
||||
{0, -1, XF86XK_Suspend, spawn, SHCMD("betterlockscreen -l dim")},
|
||||
// // Kill dwm (super + shift + alt + q)
|
||||
// { MODKEY|ShiftMask|Mod1Mask, -1, XK_q, quit, {0} },
|
||||
};
|
||||
|
||||
/* button definitions */
|
||||
/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
|
||||
static Button buttons[] = {
|
||||
/* click event mask button function argument */
|
||||
{ ClkTagBar, MODKEY, Button1, tag, {0} },
|
||||
{ ClkTagBar, MODKEY, Button3, toggletag, {0} },
|
||||
{ ClkWinTitle, 0, Button2, zoom, {0} },
|
||||
{ ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
|
||||
{ ClkClientWin, MODKEY, Button1, movemouse, {0} },
|
||||
{ ClkClientWin, MODKEY, Button2, togglefloating, {0} },
|
||||
{ ClkClientWin, MODKEY, Button3, resizemouse, {0} },
|
||||
{ ClkTagBar, 0, Button1, view, {0} },
|
||||
{ ClkTagBar, 0, Button3, toggleview, {0} },
|
||||
{ ClkTagBar, MODKEY, Button1, tag, {0} },
|
||||
{ ClkTagBar, MODKEY, Button3, toggletag, {0} },
|
||||
/* click event mask button function argument */
|
||||
{ClkTagBar, MODKEY, Button1, tag, {0}},
|
||||
{ClkTagBar, MODKEY, Button3, toggletag, {0}},
|
||||
{ClkWinTitle, 0, Button2, zoom, {0}},
|
||||
{ClkStatusText, 0, Button2, spawn, {.v = termcmd}},
|
||||
{ClkClientWin, MODKEY, Button1, movemouse, {0}},
|
||||
{ClkClientWin, MODKEY, Button2, togglefloating, {0}},
|
||||
{ClkClientWin, MODKEY, Button3, resizemouse, {0}},
|
||||
{ClkTagBar, 0, Button1, view, {0}},
|
||||
{ClkTagBar, 0, Button3, toggleview, {0}},
|
||||
{ClkTagBar, MODKEY, Button1, tag, {0}},
|
||||
{ClkTagBar, MODKEY, Button3, toggletag, {0}},
|
||||
};
|
||||
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
#ifndef keys_H
|
||||
#define keys_H
|
||||
|
||||
// X11 keysym definitions
|
||||
#include <X11/XF86keysym.h> // req (libxinerama1 and libxinerama-dev)
|
||||
|
||||
#include <X11/keysym.h>
|
||||
#include <X11/X.h>
|
||||
|
||||
#include "keys.c"
|
||||
|
||||
#endif // !keys.h
|
||||
#endif // keys_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue