From d97e9e62d9535163686c21a25d9d6ae3df1de196 Mon Sep 17 00:00:00 2001 From: Tanguy Herbron Date: Tue, 24 Nov 2020 13:56:00 +0100 Subject: [PATCH 1/2] Change i3 shortcuts --- .config/i3/config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/i3/config b/.config/i3/config index b9fc946..b715ced 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -91,7 +91,7 @@ set_from_resource $ws10_key i3-wm.workspace.10.key 0 bindsym $mod+Return exec /usr/bin/alacritty ## Launch // Browser // <> Enter ## -bindsym $mod+Shift+Return exec gtk-launch $(xdg-settings get default-web-browser) +bindsym $mod+Shift+Return exec gtk-launch firefox set_from_resource $rofiTheme rofi.theme ~/.config/rofi/config.rasi @@ -302,7 +302,7 @@ bindsym $mod+Shift+r exec --no-startup-id $i3-wm.program.refresh_ui bindsym $mod+Ctrl+r restart ## Session // Logout // <> e ## -set_from_resource $i3-wm.program.logout i3-wm.program.logout /usr/bin/gnome-session-quit --logout +set_from_resource $i3-wm.program.logout i3-wm.program.logout i3-msg exit bindsym $mod+Shift+e exec $i3-wm.program.logout ## Session // Reboot // <> b ## From 3758a5ecef36db9957b88de0586d2edcbf223e3d Mon Sep 17 00:00:00 2001 From: Tanguy Herbron Date: Tue, 24 Nov 2020 13:58:03 +0100 Subject: [PATCH 2/2] Fix scroll bar on firefox --- .mozilla/firefox/userChrome.css | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.mozilla/firefox/userChrome.css b/.mozilla/firefox/userChrome.css index ab71bd2..64fb2a2 100644 --- a/.mozilla/firefox/userChrome.css +++ b/.mozilla/firefox/userChrome.css @@ -720,7 +720,19 @@ tree, :-moz-any(#content, #appcontent) browser { margin-right: 0px !important; - overflow-y: scroll; + /*overflow-y: scroll;*/ margin-bottom: 0px !important; - overflow-x: scroll; + /*overflow-x: scroll;*/ +} + +.tab-label-container[pinned] { + width: o; +} + +.tab-content:not([pinned="true"]) { + overflow: hidden !important; +} + +.tab-container[pinned] { + width: 50px !important; }