From eece2292468a04263f0238dd0767809e1996d6da Mon Sep 17 00:00:00 2001 From: benstrb Date: Sun, 11 Jan 2026 13:59:21 +0100 Subject: [PATCH] non important commit --- home/modules/eww/eww-config/eww.scss | 87 +++++++------------ home/modules/eww/eww-config/scripts/workspace | 0 2 files changed, 31 insertions(+), 56 deletions(-) mode change 100644 => 100755 home/modules/eww/eww-config/scripts/workspace diff --git a/home/modules/eww/eww-config/eww.scss b/home/modules/eww/eww-config/eww.scss index 35f8c58..f5afa22 100644 --- a/home/modules/eww/eww-config/eww.scss +++ b/home/modules/eww/eww-config/eww.scss @@ -2,73 +2,48 @@ all: unset; } +window { + background-color: transparent; +} + .works { - background-color: rgba(0, 0, 0, 0.8); + background-color: rgba(30, 30, 30, 0.9); border-radius: 10px; - padding: 10px; + padding: 15px; } button { - font-size: 20px; - padding: 5px 10px; - border-radius: 5px; - transition: all 0.3s ease; + font-size: 24px; + padding: 8px 12px; + border-radius: 8px; + transition: all 0.2s ease; + min-width: 40px; + color: #888; - // Unoccupied workspace (class "0") + // Unoccupied workspace &.0 { - color: rgba(255, 255, 255, 0.3); + color: #666; + background-color: transparent; } - // Occupied workspace (class "01" - unoccupied flag + workspace name) - &.01, - &.02, - &.03, - &.04, - &.05, - &.06, - &.07, - &.08, - &.09, - &.010, - &.011, - &.012, - &.013, - &.014, - &.015, - &.016, - &.017, - &.018, - &.019, - &.020 { - color: rgba(255, 255, 255, 0.7); - } - - // Focused workspace (class "011" - unoccupied + workspace + focused) - &.011, - &.022, - &.033, - &.044, - &.055, - &.066, - &.077, - &.088, - &.099, - &.01010, - &.01111, - &.01212, - &.01313, - &.01414, - &.01515, - &.01616, - &.01717, - &.01818, - &.01919, - &.02020 { - color: #ffffff; - background-color: rgba(255, 255, 255, 0.2); + // Occupied (class will be like "01", "02", etc) + &[class*="1"], + &[class*="2"], + &[class*="3"], + &[class*="4"], + &[class*="5"], + &[class*="6"], + &[class*="7"], + &[class*="8"], + &[class*="9"] { + &:not(.0) { + color: #fff; + background-color: rgba(255, 255, 255, 0.15); + } } &:hover { - background-color: rgba(255, 255, 255, 0.1); + background-color: rgba(255, 255, 255, 0.25); + color: #fff; } } diff --git a/home/modules/eww/eww-config/scripts/workspace b/home/modules/eww/eww-config/scripts/workspace old mode 100644 new mode 100755