update colors and change mode module

This commit is contained in:
sudacode 2025-03-16 22:13:46 -07:00
parent 9c0cfe74c0
commit 78feda56cd
Signed by: sudacode
SSH Key Fingerprint: SHA256:lT5C2bB398DcX6daCF/gYFNSTK3y+Du3oTGUnYzfTEw
2 changed files with 13 additions and 9 deletions

View File

@ -5,12 +5,13 @@
"width": 2550, "width": 2550,
"spacing": 1, "spacing": 1,
"reload_style_on_change": true, "reload_style_on_change": true,
"fixed-center": true,
"margin": "10 5 0 5", "margin": "10 5 0 5",
"modules-left": [ "modules-left": [
"custom/launcher", "custom/launcher",
"hyprland/workspaces", "hyprland/workspaces",
"tray", "tray",
"hyprland/mode", "hyprland/submap",
"custom/mpd-scroll", "custom/mpd-scroll",
"custom/firefox", "custom/firefox",
"cava", "cava",
@ -60,8 +61,10 @@
"tooltip-format-enumerate-connected-battery": "{device_alias}\t{device_address}\t{device_battery_percentage}%", "tooltip-format-enumerate-connected-battery": "{device_alias}\t{device_address}\t{device_battery_percentage}%",
"on-click": "blueman-manager", "on-click": "blueman-manager",
}, },
"hyprland/mode": { "hyprland/submap": {
"format": "<span style=\"italic\">{}</span>", "format": "{}",
"max-length": 8,
"tooltip": false,
}, },
"hyprland/scratchpad": { "hyprland/scratchpad": {
"format": "{icon} {count}", "format": "{icon} {count}",

View File

@ -1,4 +1,5 @@
@import url("./colors.css"); @import url("./colors.css");
@import url("./highlights.css");
* { * {
border: none; border: none;
@ -85,7 +86,7 @@ button:hover {
background-image: linear-gradient(0deg, @surface1, @mantle); background-image: linear-gradient(0deg, @surface1, @mantle);
} }
#mode { #submap {
background-color: @base; background-color: @base;
box-shadow: inset 0 -2px @text; box-shadow: inset 0 -2px @text;
} }
@ -103,7 +104,7 @@ button:hover {
#custom-kernel, #custom-kernel,
#idle_inhibitor, #idle_inhibitor,
#scratchpad, #scratchpad,
#mode, #submap,
#tray { #tray {
padding: 0 10px; padding: 0 10px;
margin: 5px 1px; margin: 5px 1px;
@ -167,7 +168,7 @@ label:focus {
} }
#network.disconnected { #network.disconnected {
background-color: red; background-color: @red;
color: @mantle; color: @mantle;
} }
@ -178,7 +179,7 @@ label:focus {
} }
#pulseaudio { #pulseaudio {
background-color: @yellow; background-color: @sapphire;
color: @mantle; color: @mantle;
} }
@ -242,7 +243,7 @@ label:focus {
#custom-mpd-scroll { #custom-mpd-scroll {
color: @base; color: @base;
background-color: @blue; background-color: @mauve;
padding: 0 10px; padding: 0 10px;
margin: 5px 1px; margin: 5px 1px;
} }
@ -261,7 +262,7 @@ label:focus {
#custom-firefox { #custom-firefox {
color: @base; color: @base;
background-color: @pink; background-color: @peach;
padding: 0 10px; padding: 0 10px;
margin: 5px 1px; margin: 5px 1px;
} }