From 9ca0fcebf70babcaa9caf87ce313540ba3567546 Mon Sep 17 00:00:00 2001 From: ZachIR Date: Fri, 25 Apr 2025 19:16:37 -0500 Subject: Update theming with EC0101 red --- waybar/style.css | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'waybar') diff --git a/waybar/style.css b/waybar/style.css index 88b8900..8fc3d0a 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -53,7 +53,7 @@ window#waybar.hidden { */ #workspaces button.active { - background: #198844; + background: #EC0101; } /* @@ -157,7 +157,7 @@ label:focus { } #memory { - background-color: #198844; + background-color: #EC0101; color: #ffffff; } @@ -167,12 +167,12 @@ label:focus { } #backlight { - background-color: #198844; + background-color: #EC0101; color: #ffffff; } #network { - background-color: #198844; + background-color: #EC0101; color: #ffffff; } @@ -181,14 +181,14 @@ label:focus { color: #ffffff; } -#pulseaudio { - background-color: #198844; +#wireplumber { + background-color: #EC0101; color: #ffffff; } -#pulseaudio.muted { +#wireplumber.muted { background-color: #1b1d1c; - color: #198844; + color: #EC0101; } #custom-media { @@ -278,19 +278,19 @@ label:focus { } #tray { - background-color: #198844; + background-color: #EC0101; color: #ffffff; } #tray > .passive { -gtk-icon-effect: dim; - background-color: #198844; + background-color: #EC0101; color: #ffffff; } #tray > .needs-attention { -gtk-icon-effect: highlight; - background-color: #198844; + background-color: #EC0101; color: #ffffff; } @@ -301,7 +301,7 @@ label:focus { } #idle_inhibitor.activated { - background-color: #198844; + background-color: #EC0101; color: #ffffff; border-radius: 20px 0px 0px 20px; -- cgit v1.2.3 From a1ce3c5c49c810c56c4ccd0b6539f3646e7eaa2d Mon Sep 17 00:00:00 2001 From: ZachIR Date: Fri, 25 Apr 2025 19:20:51 -0500 Subject: Update waybar with pipewire and move tray left --- waybar/config | 23 ++++++----------------- waybar/style.css | 2 +- 2 files changed, 7 insertions(+), 18 deletions(-) (limited to 'waybar') diff --git a/waybar/config b/waybar/config index 7a54e0c..2717db9 100644 --- a/waybar/config +++ b/waybar/config @@ -11,7 +11,7 @@ "modules-left":[ "hyprland/workspaces", "custom/launcher", "hyprland/window"], "modules-center":[], - "modules-right":[ "mpd", "idle_inhibitor", "pulseaudio", "cpu", "memory", "temperature#cpu", "temperature#gpu", "backlight", "network", "clock", "tray", "custom/power"], + "modules-right":[ "tray", "mpd", "idle_inhibitor", "wireplumber", "cpu", "memory", "temperature#cpu", "temperature#gpu", "backlight", "network", "clock", "custom/power"], // Modules configuration @@ -135,24 +135,13 @@ "max-length": 22, "on-click-right": "bash ~/.config/rofi/wifi_menu/rofi_wifi_menu" }, - "pulseaudio": { + "wireplumber": { // "scroll-step": 1, // %, can be a float "format": "{volume}% {icon}", - "format-bluetooth": "{volume}% {icon}", - "format-bluetooth-muted": "{icon} {format_source}", - "format-muted": "{format_source}", - "format-source": "", - "format-source-muted": "", - "format-icons": { - "headphone": "", - "hands-free": "", - "headset": "", - "phone": "", - "portable": "", - "car": "", - "default": ["", "", ""] - }, - "on-click": "pavucontrol" + "format-muted": "{volume}% ", + "format-icons": ["", "", ""], + "on-click": "volsv -t", + "scroll-step": 0.1 }, "custom/launcher":{ "format": "", diff --git a/waybar/style.css b/waybar/style.css index 8fc3d0a..05af6ab 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -81,7 +81,7 @@ window#waybar.hidden { #temperature, #backlight, #network, -#pulseaudio, +#wireplumber, #custom-media, #custom-launcher, #custom-power, -- cgit v1.2.3 From 15aae9e20626945fdb53f97617592da023ccb40d Mon Sep 17 00:00:00 2001 From: ZachIR Date: Fri, 25 Apr 2025 19:42:38 -0500 Subject: Fix battery charging still being green --- waybar/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'waybar') diff --git a/waybar/style.css b/waybar/style.css index 05af6ab..3b96e8a 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -126,7 +126,7 @@ window#waybar.hidden { } #battery.charging, #battery.plugged { - color: #26A65B; + color: #EC0101; background-color: #1b1d1c; } -- cgit v1.2.3 From 0916c4524713b57755a93a3984be7e387d9b656a Mon Sep 17 00:00:00 2001 From: ZachIR Date: Wed, 30 Apr 2025 23:33:58 -0500 Subject: Update colorscheme to red and magenta Updated in hyprland, kitty, tofi, and waybar --- hypr/hyprland.conf | 2 +- kitty/kitty.conf | 6 +++--- tofi/colors | 12 ++++++------ tofi/themes/colors | 12 ++++++------ waybar/style.css | 4 ++-- 5 files changed, 18 insertions(+), 18 deletions(-) (limited to 'waybar') diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 49ae303..86f1f77 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -88,7 +88,7 @@ general { border_size = 2 #col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg #col.inactive_border = rgba(595959aa) - col.active_border = rgba(198844ee) + col.active_border = rgba(ec0101ee) col.inactive_border = rgba(1b1d1cee) layout = master } diff --git a/kitty/kitty.conf b/kitty/kitty.conf index 095607b..59a7f5e 100644 --- a/kitty/kitty.conf +++ b/kitty/kitty.conf @@ -1151,7 +1151,7 @@ color8 #969896 #: black color1 #89231d -color9 #cc342b +color9 #ec0101 #: red @@ -1170,8 +1170,8 @@ color12 #3971ed #: blue -color5 #784e93 -color13 #a36ac7 +color5 #6e3c85 +color13 #8400c1 #: magenta diff --git a/tofi/colors b/tofi/colors index a5f480c..5dcbb04 100644 --- a/tofi/colors +++ b/tofi/colors @@ -1,10 +1,10 @@ background-color = #000000 -outline-color = #39c1ed -border-color = #39c1ed +outline-color = #ec0101 +border-color = #ec0101 text-color = #ffffff -prompt-color = #39c1ed +prompt-color = #ec0101 prompt-background = #000000 -placeholder-color = #39c1ed +placeholder-color = #ec0101 placeholder-background = #000000 input-color = #ffffff input-background = #000000 @@ -12,6 +12,6 @@ default-result-background = #000000 alternate-result-color = #ffffff alternate-result-background = #000000 selection-color = #000000 -selection-match-color = #198844 -selection-background = #39c1ed +selection-match-color = #6e3c85 +selection-background = #ec0101 diff --git a/tofi/themes/colors b/tofi/themes/colors index 047c875..5dcbb04 100644 --- a/tofi/themes/colors +++ b/tofi/themes/colors @@ -1,10 +1,10 @@ background-color = #000000 -outline-color = #198844 -border-color = #198844 +outline-color = #ec0101 +border-color = #ec0101 text-color = #ffffff -prompt-color = #198844 +prompt-color = #ec0101 prompt-background = #000000 -placeholder-color = #198844 +placeholder-color = #ec0101 placeholder-background = #000000 input-color = #ffffff input-background = #000000 @@ -12,6 +12,6 @@ default-result-background = #000000 alternate-result-color = #ffffff alternate-result-background = #000000 selection-color = #000000 -selection-match-color = #39c1ed -selection-background = #198844 +selection-match-color = #6e3c85 +selection-background = #ec0101 diff --git a/waybar/style.css b/waybar/style.css index 3b96e8a..bf98a1d 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -45,7 +45,7 @@ window#waybar.hidden { /* #workspaces button:hover { - background: #39c1ed; + background: #6e3c85; color: black; border-bottom: 3px solid #ffffff; @@ -58,7 +58,7 @@ window#waybar.hidden { /* #workspaces button.active:hover { - background: #39c1ed; + background: #6e3c85; color: black; border-bottom: 3px solid #ffffff; } -- cgit v1.2.3 From bbc5fff9c4c447236222ae3ec83d6829dc086825 Mon Sep 17 00:00:00 2001 From: ZachIR Date: Thu, 1 May 2025 00:19:02 -0500 Subject: Make system tray background transparent --- waybar/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'waybar') diff --git a/waybar/style.css b/waybar/style.css index bf98a1d..6a9d8cc 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -278,7 +278,7 @@ label:focus { } #tray { - background-color: #EC0101; + background-color: transparent; color: #ffffff; } -- cgit v1.2.3 From e6b45c355e56158fe2166da92443fe2fa76a6cbe Mon Sep 17 00:00:00 2001 From: zachir Date: Sun, 29 Jun 2025 21:09:19 -0500 Subject: Change waybar colors back to green --- waybar/style.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'waybar') diff --git a/waybar/style.css b/waybar/style.css index 6a9d8cc..1dc21aa 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -126,7 +126,7 @@ window#waybar.hidden { } #battery.charging, #battery.plugged { - color: #EC0101; + color: #198844; background-color: #1b1d1c; } @@ -157,7 +157,7 @@ label:focus { } #memory { - background-color: #EC0101; + background-color: #198844; color: #ffffff; } @@ -182,7 +182,7 @@ label:focus { } #wireplumber { - background-color: #EC0101; + background-color: #198844; color: #ffffff; } @@ -284,13 +284,13 @@ label:focus { #tray > .passive { -gtk-icon-effect: dim; - background-color: #EC0101; + background-color: #198844; color: #ffffff; } #tray > .needs-attention { -gtk-icon-effect: highlight; - background-color: #EC0101; + background-color: #198844; color: #ffffff; } -- cgit v1.2.3 From 889454ccb493db5f86aa61754f279da09e3c5b35 Mon Sep 17 00:00:00 2001 From: zachir Date: Sun, 29 Jun 2025 21:27:56 -0500 Subject: Set waybar style to use green --- waybar/style.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'waybar') diff --git a/waybar/style.css b/waybar/style.css index 1dc21aa..6c22341 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -53,7 +53,7 @@ window#waybar.hidden { */ #workspaces button.active { - background: #EC0101; + background: #198844; } /* @@ -167,12 +167,12 @@ label:focus { } #backlight { - background-color: #EC0101; + background-color: #198844; color: #ffffff; } #network { - background-color: #EC0101; + background-color: #198844; color: #ffffff; } @@ -188,7 +188,7 @@ label:focus { #wireplumber.muted { background-color: #1b1d1c; - color: #EC0101; + color: #198844; } #custom-media { @@ -301,7 +301,7 @@ label:focus { } #idle_inhibitor.activated { - background-color: #EC0101; + background-color: #198844; color: #ffffff; border-radius: 20px 0px 0px 20px; -- cgit v1.2.3