Add kitty shorcut and remove konsole 😶‍🌫️

This commit is contained in:
Anas Elgarhy 2022-07-12 07:11:56 +02:00
parent 701f9b4417
commit c50e9cd603
2 changed files with 6 additions and 6 deletions

View file

@ -28,8 +28,8 @@
| modkey + enter | Launche the main terminal (alacritty by default) |
| modkey + t -> a | Launche the alacritty terminal |
| modkey + t -> shift + a | Launche the alacritty terminal with tmux |
| modkey + t -> k | Launche the konsole terminal |
| modkey + t -> shift + k | Launche the konsole terminal with tmux |
| modkey + t -> k | Launche the kitty terminal |
| modkey + t -> shift + k | Launche the kitty terminal with tmux |
| modkey + shift + f -> g | Launche the GUI file manger (pcmanfm by default) |
| modkey + shift + f -> f | Launche rofi file file browser (small size) |
| modkey + shift + f -> r | Launche ranger in the main terminal |

View file

@ -30,10 +30,10 @@ static Keychord keychords[] = {
{2, {{MODKEY, XK_t}, {0, XK_a}}, spawn, SHCMD("alacritty") },
// Start the alacritty terminal with tmux
{2, {{MODKEY, XK_t}, {ShiftMask, XK_a}}, spawn, SHCMD("alacritty -e tmux") },
// konsole
{2, {{MODKEY, XK_t}, {0, XK_k}}, spawn, SHCMD("konsole") },
// konsole with tmux
{2, {{MODKEY, XK_t}, {ShiftMask, XK_k}}, spawn, SHCMD("konsole -e tmux") },
// kitty
{2, {{MODKEY, XK_t}, {0, XK_k}}, spawn, SHCMD("kitty") },
// kitty with tmux
{2, {{MODKEY, XK_t}, {ShiftMask, XK_k}}, spawn, SHCMD("kitty -e tmux") },
/************************************* File browsers *************************************/
// GUI filebrowser (pcmanfm)
{2, {{MODKEY|ShiftMask, XK_f}, {0, XK_g}}, spawn, SHCMD(GUI_FILEMANAGER) },