feat(keys): update the keybindings
This commit is contained in:
parent
1b6ddb9726
commit
97055fdf2f
2 changed files with 3 additions and 3 deletions
|
@ -23,9 +23,9 @@ static Key keys[] = {
|
|||
/* modifier chain key key function argument */
|
||||
/* ---------------------------------- Apps Keys ---------------------------------- */
|
||||
// Dmenu (launcher)
|
||||
{MODKEY | ShiftMask, XK_d, spawn, {.v = dmenucmd}},
|
||||
{MODKEY, XK_p, spawn, {.v = dmenucmd}},
|
||||
// Rofi launcher (small)
|
||||
{MODKEY | ShiftMask | ControlMask, XK_d, spawn, SHCMD("rofi -show drun")},
|
||||
{MODKEY, XK_r, spawn, SHCMD("rofi -show drun")},
|
||||
{MODKEY, XK_Return, spawn, {.v = termcmd}},
|
||||
/************************************* Start the web browers *************************************/
|
||||
// Firefox-developer-edition
|
||||
|
|
|
@ -14,7 +14,7 @@ typedef struct {
|
|||
} Key;
|
||||
|
||||
/* key definitions */
|
||||
#define MODKEY Mod4Mask // Super key
|
||||
#define MODKEY Mod1Mask // The alt key
|
||||
|
||||
#define TAGKEYS(KEY, TAG) \
|
||||
{MODKEY, KEY, view, {.ui = 1 << TAG}}, \
|
||||
|
|
Loading…
Reference in a new issue