From 228855a246771ad17f0ae27456838aeaed9cf676 Mon Sep 17 00:00:00 2001 From: tiago Date: Fri, 19 May 2023 14:38:46 +0100 Subject: [PATCH] added keybind for browser and changed horizontal split bind --- .config/i3/config | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.config/i3/config b/.config/i3/config index 81b8630..ec9df30 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -10,6 +10,8 @@ # Please see https://i3wm.org/docs/userguide.html for a complete reference! set $mod Mod1 +set $browser firefox +set $terminal alacritty # Font for window titles. Will also be used by the bar unless a different font # is used in the bar {} block below. @@ -63,7 +65,7 @@ floating_modifier $mod tiling_drag modifier titlebar # start a terminal -bindsym $mod+Return exec alacritty +bindsym $mod+Return exec $terminal # kill focused window bindsym $mod+q kill @@ -79,6 +81,8 @@ bindsym $mod+d exec --no-startup-id rofi -show drun # start power menu (rofi) bindsym $mod+p exec --no-startup-id $HOME/.config/rofi/scripts/powermenu.sh +# launch a browser +bindsym $mod+b exec --no-startup-id $browser # change focus bindsym $mod+h focus left bindsym $mod+j focus down @@ -104,7 +108,7 @@ bindsym $mod+Shift+Up move up bindsym $mod+Shift+Right move right # split in horizontal orientation -bindsym $mod+b split h +bindsym $mod+c split h # split in vertical orientation bindsym $mod+v split v