From d6b334c2fa71fd1d65fabb631cc9da2dff655d85 Mon Sep 17 00:00:00 2001 From: askiiart Date: Wed, 5 Feb 2025 12:51:48 -0600 Subject: [PATCH 1/3] improve librewolf rice --- librewolf/chrome/userChrome.css | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/librewolf/chrome/userChrome.css b/librewolf/chrome/userChrome.css index 5874dac..770ce98 100644 --- a/librewolf/chrome/userChrome.css +++ b/librewolf/chrome/userChrome.css @@ -33,11 +33,16 @@ #back-button { display: none !important; } +*/ #forward-button { display: none !important; } -*/ + +#reload-button { + display: none !important; +} + /*#tracking-protection-icon-container { display: none !important; }*/ @@ -70,10 +75,12 @@ display: none !important; } +/* #PanelUI-button { display: none !important; } +*/ #nav-bar:not([tabs-hidden="true"]) { box-shadow: none !important; -} \ No newline at end of file +} From d21f0edb4c38365ad2d15f2fcd0375679592173f Mon Sep 17 00:00:00 2001 From: askiiart Date: Wed, 5 Feb 2025 12:52:14 -0600 Subject: [PATCH 2/3] chore: format --- librewolf/chrome/userChrome.css | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/librewolf/chrome/userChrome.css b/librewolf/chrome/userChrome.css index 770ce98..d49b4eb 100644 --- a/librewolf/chrome/userChrome.css +++ b/librewolf/chrome/userChrome.css @@ -12,6 +12,7 @@ --tab-border-radius: 50px !important; --tabs-border-color: transparent !important; } + #navigator-toolbox { border: 0px !important; } @@ -43,9 +44,11 @@ display: none !important; } -/*#tracking-protection-icon-container { +/* +#tracking-protection-icon-container { display: none !important; -}*/ +} +*/ #urlbar-container { width: unset !important; @@ -61,7 +64,8 @@ z-index: 999999 !important; } -#urlbar-background, #searchbar { +#urlbar-background, +#searchbar { border: 0px none !important; } @@ -83,4 +87,4 @@ #nav-bar:not([tabs-hidden="true"]) { box-shadow: none !important; -} +} \ No newline at end of file From 4acdbb76a06cc90975e165f5f762cd1c6cd8fe19 Mon Sep 17 00:00:00 2001 From: askiiart Date: Thu, 6 Feb 2025 10:05:27 -0600 Subject: [PATCH 3/3] add XF86 brightness keybinds --- sway/config.d/misc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sway/config.d/misc b/sway/config.d/misc index 31c489f..12dd423 100644 --- a/sway/config.d/misc +++ b/sway/config.d/misc @@ -61,7 +61,9 @@ for_window [title="^Authentication Required$" app_id="lxqt-policykit-agent"] flo bindsym Scroll_Lock exec --no-startup-id $lockwall, mode "default" # Adjust screen brightness with keys +bindsym XF86MonBrightnessUp exec "brightnessctl set 10%+" bindsym Mod4+Mod1+Up exec "brightnessctl set 10%+" +bindsym XF86MonBrightnessDown exec "brightnessctl set 10%-" bindsym Mod4+Mod1+Down exec "brightnessctl set 10%-" bindsym Mod4+Mod1+Shift+Up exec "brightnessctl set 1%+" bindsym Mod4+Mod1+Shift+Down exec "brightnessctl set 1%-"