From: Lucie Scarlet Date: Tue, 3 Sep 2024 20:32:38 +0000 (+0200) Subject: Moved some of the keybinds out of config X-Git-Url: https://git.chaotic.ninja/gitweb/lucie/?a=commitdiff_plain;ds=sidebyside;p=dotfiles.git 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. --- 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