diff options
| author | awy <awy@awy.one> | 2025-11-02 00:56:22 +0300 | 
|---|---|---|
| committer | awy <awy@awy.one> | 2025-11-02 00:56:22 +0300 | 
| commit | 6849af02ffc76224c6b3ac441591ccbf2f71d556 (patch) | |
| tree | aa2bfae746fb761127cc2dac8199a151ff7ff673 /.config/waybar | |
| parent | b50a984b506d71a77d72195af5ec680047a6ef17 (diff) | |
| download | hyprdots-6849af02ffc76224c6b3ac441591ccbf2f71d556.tar.gz | |
up
Diffstat (limited to '.config/waybar')
| -rw-r--r-- | .config/waybar/config.jsonc | 6 | ||||
| -rw-r--r-- | .config/waybar/style.css | 25 | 
2 files changed, 17 insertions, 14 deletions
diff --git a/.config/waybar/config.jsonc b/.config/waybar/config.jsonc index d56df85..e3283fa 100644 --- a/.config/waybar/config.jsonc +++ b/.config/waybar/config.jsonc @@ -35,10 +35,10 @@      "on-click": "activate",      "format": "{icon}"    }, -  "custom/layout": { +  "custom/icon": {      "cursor": false,      "tooltip": false, -    "format": " []= " +    "format": ""    },    "hyprland/window": {      "format": "{class}: {title}", @@ -309,7 +309,7 @@      "on-click-backward": "BLOCK_BUTTON=8 sb-internet"    },    "tray": { -    "icon-size": 20, +    "icon-size": 15,      "spacing": 3    }  } diff --git a/.config/waybar/style.css b/.config/waybar/style.css index 2f59995..cba4fdf 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -2,7 +2,7 @@  * {    font-family: monospace; -  font-size: 17px; +  font-size: 15px;    border: none;  } @@ -11,11 +11,10 @@ window#waybar {    color: #d3c6aa;  } -window#waybar>* { -  margin-top: 3px; -  margin-bottom: 3px; -  /* margin-top + bar underline thickness */ -} +/* window#waybar>* { */ +/*   margin-top: 4px; */ +/*   margin-bottom: 4px; */ +/* } */  window#waybar.hidden {    opacity: 0.2; @@ -27,14 +26,17 @@ window#waybar.hidden {  }  #workspaces button { -  padding: 0; +  padding: 3 6;    min-height: 0px;    margin-left: 4px; -  color: #495156; +  color: #d3c6aa;  }  #workspaces button.active { +  padding: 3 12;    color: #d3c6aa; +  background-color: #414B50; +  border-radius: 0px;  }  #workspaces button.urgent { @@ -116,9 +118,10 @@ window#waybar.hidden {    margin-right: 10px;  } -#window, -#workspaces { -  margin: 0 4px; +#custom-icon { +  padding: 0px; +  margin-left: 10px; +  margin-right: 10px;  }  #custom-clock {  |