Add more kays 🥰
This commit is contained in:
parent
78773d607a
commit
3cf72b5260
2 changed files with 10 additions and 0 deletions
|
@ -33,6 +33,9 @@
|
|||
| modkey + a -> j | Launche jetbrains-toolbox |
|
||||
| modkey + a -> n | Launche NeoVim in the main terminal |
|
||||
| modkey + a -> v | Launche Vim in the main terminal |
|
||||
| modkey + a -> e | Launche emacs |
|
||||
| modkey + p -> n | Launche nitrogen |
|
||||
| modkey + p -> s | Launche settings manger (plasma-open-settings) |
|
||||
| modkey + e | Launche rofi emoji selector |
|
||||
| modkey + f | Toggle full screen mode |
|
||||
| modkey + b | Toggle the status bar (hide/show) |
|
||||
|
|
|
@ -47,6 +47,13 @@ static Keychord keychords[] = {
|
|||
{2, {{MODKEY, XK_a}, {0, XK_n}}, spawn, SHCMD(TERMINAL " -e nvim") },
|
||||
// Vim
|
||||
{2, {{MODKEY, XK_a}, {0, XK_v}}, spawn, SHCMD(TERMINAL " -e vim") },
|
||||
// emacs
|
||||
{2, {{MODKEY, XK_a}, {0, XK_e}}, spawn, SHCMD("emacs") },
|
||||
/************************************* Start personalize apps *************************************/
|
||||
// nitrogen
|
||||
{2, {{MODKEY, XK_p}, {0, XK_n}}, spawn, SHCMD("nitrogen") },
|
||||
// Plasma settings manger
|
||||
{2, {{MODKEY, XK_p}, {0, XK_s}}, spawn, SHCMD("plasma-open-settings") },
|
||||
/************************************* Start multi media apps *************************************/
|
||||
// cmus
|
||||
{2, {{MODKEY, XK_m}, {0, XK_c}}, spawn, SHCMD(TERMINAL " -e cmus") },
|
||||
|
|
Loading…
Reference in a new issue