aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/hyprland/.config/waybar/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/hyprland/.config/waybar/style.css')
-rw-r--r--dotfiles/hyprland/.config/waybar/style.css164
1 files changed, 0 insertions, 164 deletions
diff --git a/dotfiles/hyprland/.config/waybar/style.css b/dotfiles/hyprland/.config/waybar/style.css
deleted file mode 100644
index cd158d0..0000000
--- a/dotfiles/hyprland/.config/waybar/style.css
+++ /dev/null
@@ -1,164 +0,0 @@
-/* Waybar style - Dupre theme */
-/* Warm, earthy colors from dupre-theme.el */
-
-* {
- border: none;
- border-radius: 0;
- /* CSS uses pixels, not points (13pt ≈ 17px at 96 DPI) */
- font-size: 14px;
- min-height: 0;
- font-family: "BerkeleyMono Nerd Font", "Berkeley Mono", monospace;
-}
-
-window#waybar {
- background: transparent;
-}
-
-#workspaces {
- padding: 0.2rem;
-}
-
-#workspaces button {
- min-width: 34px;
- min-height: 32px;
- padding: 0;
- margin: 0.15rem;
- background-color: transparent;
- color: #969385;
- background-image: url("/home/cjennings/.config/waybar/ws-icons/ws-inactive.svg");
- background-size: contain;
- background-repeat: no-repeat;
- background-position: center;
- border-radius: 50%;
- transition: all 0.3s ease;
-}
-
-#workspaces button.active {
- background-image: url("/home/cjennings/.config/waybar/ws-icons/ws-active.svg");
- color: #151311;
-}
-
-#custom-menu {
- background-image: url("/home/cjennings/.config/waybar/arch-logo.svg");
- background-size: contain;
- background-repeat: no-repeat;
- background-position: center;
- background-color: transparent;
- border-radius: 1rem;
- min-width: 2.0rem;
- padding: 0;
- margin: 0.15rem;
- transition: all 0.3s ease;
-}
-
-#workspaces button.urgent {
- background-color: rgba(212, 124, 89, 0.4);
-}
-
-.modules-right, .modules-left {
- background-color: #151311;
- border-radius: 1rem;
- padding: 0.1rem 0.6rem;
- margin: 0.3rem;
- border: 0.095rem solid #d7af5f;
- box-shadow: 0rem 0.2rem 0.4rem rgba(0,0,0,0.5);
-}
-
-#cpu,
-#temperature,
-#memory,
-#custom-disk,
-#custom-netspeed,
-#battery,
-#pulseaudio,
-#idle_inhibitor,
-#tray,
-#custom-date,
-#custom-worldclock,
-#custom-layout,
-#custom-touchpad,
-#custom-airplane,
-#window {
- padding: 0.45rem;
- margin: 0.3rem;
- color: #969385;
- background-color: transparent;
- border-radius: 1rem;
-}
-
-#sysmonitor {
- background-color: transparent;
- border-radius: 1rem;
-}
-
-#cpu:hover,
-#temperature:hover,
-#memory:hover,
-#custom-disk:hover,
-#custom-netspeed:hover,
-#pulseaudio:hover,
-#sysmonitor:hover,
-#custom-touchpad:hover,
-#custom-airplane:hover,
-#custom-layout:hover {
- background-color: #474544;
- border-radius: 1rem;
-}
-
-
-#custom-netspeed.disconnected {
- color: #d47c59;
-}
-
-#custom-touchpad.disabled {
- color: #d47c59;
-}
-
-#custom-airplane.active {
- color: #d7af5f;
-}
-
-#temperature.warning {
- color: #d7af5f;
-}
-
-#temperature.critical {
- color: #d47c59;
-}
-
-#custom-disk.warning {
- color: #d7af5f;
-}
-
-#custom-disk.critical {
- color: #d47c59;
-}
-
-#battery.warning {
- color: #d7af5f;
-}
-
-#battery.critical {
- color: #d47c59;
-}
-
-#custom-date {
- margin-left: 0;
- padding-left: 0;
- margin-right: 0;
- padding-right: 0.2rem;
-}
-
-#custom-worldclock {
- margin-left: 0;
- padding-left: 0.2rem;
-}
-
-#tray > .passive {
- -gtk-icon-effect: dim;
-}
-
-#tray > .needs-attention {
- -gtk-icon-effect: highlight;
- background-color: #d7af5f;
-}