From 51788e309ec28548f0f747dc6d5457661d73184c Mon Sep 17 00:00:00 2001 From: speedie Date: Sat, 12 Nov 2022 00:58:27 +0100 Subject: [PATCH] No reason to define more terminals than I have on my system, what was I thinking? --- docs/keybinds | 2 -- keybinds.h | 2 -- 2 files changed, 4 deletions(-) diff --git a/docs/keybinds b/docs/keybinds index 0be3c53..f6e2d2a 100644 --- a/docs/keybinds +++ b/docs/keybinds @@ -2,8 +2,6 @@ Keybinds for regular applications - - Super+Enter - Opens st with tabbed - - Super+Control+Shift - Opens Alacritty - Super+Shift+Enter - Opens the defined terminal (default is st) - Super+Shift+Colon - Opens a dmenu prompt - Super+Shift+s - Opens 'maim' to take a screenshot and copies it to the clipboard using 'xclip' (requires speedwm-extras) diff --git a/keybinds.h b/keybinds.h index 68d798c..39d37d3 100644 --- a/keybinds.h +++ b/keybinds.h @@ -49,8 +49,6 @@ static Key keys[] = { { MODIFIER1|CONTROL|SHIFT, -1, XK_semicolon, spawn, cmd( "speedwm-applist" ) }, /* Application keybinds */ - { MODIFIER1, -1, XK_Return, spawn, cmd( "tabbed -c -r 2 st -w ''" ) }, - { MODIFIER1|CONTROL, -1, XK_Return, spawn, cmd( "alacritty" ) }, { MODIFIER1|SHIFT, -1, XK_Return, spawn, cmd( TERMINAL ) }, { MODIFIER1|SHIFT, -1, XK_s, spawn, cmd( "speedwm-screenshotutil -s" ) }, { MODIFIER1|SHIFT, -1, XK_f, spawn, cmd( TERMINAL "vifmrun || vifm" ) },