diff options
author | sefidel <contact@sefidel.net> | 2022-01-26 11:38:00 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-01-26 11:38:00 +0900 |
commit | 85a5b96b17ba7c025a96e616d11a20f1489b3fab (patch) | |
tree | e28bd7957c84eb018822a103149576c7c10cb902 /home/profiles/base/config/waybar-style.nix | |
parent | 358efefb454690c0538b9d523cd32f6af400f640 (diff) | |
download | nixrc-85a5b96b17ba7c025a96e616d11a20f1489b3fab.tar.gz nixrc-85a5b96b17ba7c025a96e616d11a20f1489b3fab.zip |
home/base: waybar - store config in seperate dir
Diffstat (limited to 'home/profiles/base/config/waybar-style.nix')
-rw-r--r-- | home/profiles/base/config/waybar-style.nix | 77 |
1 files changed, 0 insertions, 77 deletions
diff --git a/home/profiles/base/config/waybar-style.nix b/home/profiles/base/config/waybar-style.nix deleted file mode 100644 index 686da35..0000000 --- a/home/profiles/base/config/waybar-style.nix +++ /dev/null @@ -1,77 +0,0 @@ -{ neotheme }: - -with neotheme.colors; - -'' - * { - border: none; - border-radius: 0; - font-family: "Dina, JetBrainsMono Nerd Font"; - font-size: 12px; - min-height: 0; - } - - window#waybar { - background: #${background}; - color: #${foreground}; - border-bottom: 1px solid #${bright0}; - } - - #workspaces button { - padding: 0 8px; - background: #${background}; - color: #${foreground}; - border-bottom: 1px solid #${bright0}; - } - - #workspaces button.focused { - color: #${foreground}; - background-color: #${bright0}; - } - - #workspaces button.urgent { - color: #${color1}; - } - - #workspaces button.persistent { - color: #${alt1}; - } - - #workspaces button:hover { - color: #${foreground}; - background: #${alt1}; - box-shadow: inherit; - text-shadow: inherit; - } - - #clock, - #cpu, - #temperature, - #backlight, - #network, - #memory, - #language, - #pulseaudio, - #tray, - #mode, - #mpd { - padding: 0.2rem 0.6rem; - margin: 0 2px; - color: #${foreground}; - background-color: #${background}; - border-bottom: 1px solid #${bright0}; - } - - @keyframes blink { - to { - background-color: #${color4}; - color: #${background}; - } - } - - #custom-seperator { - color: #${alt1}; - background-color: #${background}; - border-bottom: 1px solid #${bright0}; - } -'' |