Add gui file manager kay biding
This commit is contained in:
parent
c4fd2e3099
commit
a4b6f58d12
1 changed files with 5 additions and 1 deletions
6
config.h
6
config.h
|
@ -4,6 +4,7 @@
|
||||||
#define WEBBROWSER "google-chrome-stable"
|
#define WEBBROWSER "google-chrome-stable"
|
||||||
#define TERMINAL "alacritty"
|
#define TERMINAL "alacritty"
|
||||||
#define SCREENSHOT "spectacle"
|
#define SCREENSHOT "spectacle"
|
||||||
|
#define GUI_FILEMANAGER "dolphin"
|
||||||
|
|
||||||
/* appearance */
|
/* appearance */
|
||||||
static const unsigned int borderpx = 1; /* border pixel of windows */
|
static const unsigned int borderpx = 1; /* border pixel of windows */
|
||||||
|
@ -102,7 +103,10 @@ static Key keys[] = {
|
||||||
{ MODKEY, XK_Return, spawn, {.v = termcmd } },
|
{ MODKEY, XK_Return, spawn, {.v = termcmd } },
|
||||||
// Start the terminal with tmux
|
// Start the terminal with tmux
|
||||||
{ MODKEY|ShiftMask, XK_Return, spawn, SHCMD(TERMINAL " -e tmux") },
|
{ MODKEY|ShiftMask, XK_Return, spawn, SHCMD(TERMINAL " -e tmux") },
|
||||||
// Start the web browser
|
// File browsers
|
||||||
|
{ MODKEY|ShiftMask, XK_f, spawn, SHCMD(GUI_FILEMANAGER) },
|
||||||
|
|
||||||
|
// Start the web brower
|
||||||
{ MODKEY, XK_w, spawn, SHCMD(WEBBROWSER) },
|
{ MODKEY, XK_w, spawn, SHCMD(WEBBROWSER) },
|
||||||
// Discord
|
// Discord
|
||||||
{ MODKEY|ShiftMask, XK_b, spawn, SHCMD("discord") },
|
{ MODKEY|ShiftMask, XK_b, spawn, SHCMD("discord") },
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue