From 6e8835cf950955e04c0ab0f901f75c58282dfe3c Mon Sep 17 00:00:00 2001 From: Lucie Scarlet Date: Tue, 3 Sep 2024 22:32:38 +0200 Subject: [PATCH] Moved some of the keybinds out of config Stuff I can easily change later on should not be buried in a config file. Things like the standard keybinds can stay, but app launching should be separated out. --- i3/install.sh | 1 + i3/keybinds-extra.conf | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 i3/keybinds-extra.conf diff --git a/i3/install.sh b/i3/install.sh index bd14c6b..10014da 100755 --- a/i3/install.sh +++ b/i3/install.sh @@ -6,6 +6,7 @@ echo "Installing i3 config" mkdir -p ~/.config/i3 cp ./i3config ~/.config/i3/config cp ./autoload.conf ~/.config/i3/autoload.conf +cp ./keybinds-extra.conf ~/.config/i3/keybinds-extra.conf echo "Installing i3status config" mkdir -p ~/.config/i3status diff --git a/i3/keybinds-extra.conf b/i3/keybinds-extra.conf new file mode 100644 index 0000000..98c61ec --- /dev/null +++ b/i3/keybinds-extra.conf @@ -0,0 +1,11 @@ +# Flameshot +bindsym Mod4+Shift+s exec flameshot gui + +# Lock session +bindsym Mod4+l exec dm-tool lock + +# start a terminal +bindsym $mod+Return exec i3-sensible-terminal + +# start dmenu (a program launcher) +bindsym $mod+d exec --no-startup-id dmenu_run -- 2.45.2