diff options
Diffstat (limited to 'waybar')
-rwxr-xr-x | waybar/.config/waybar/config.jsonc | 41 | ||||
-rwxr-xr-x | waybar/.config/waybar/style.css | 73 |
2 files changed, 114 insertions, 0 deletions
diff --git a/waybar/.config/waybar/config.jsonc b/waybar/.config/waybar/config.jsonc new file mode 100755 index 0000000..7020d51 --- /dev/null +++ b/waybar/.config/waybar/config.jsonc @@ -0,0 +1,41 @@ +{ + "reload_style_on_change" : true, + "position": "top", + "height" : 32, + "modules-left": ["hyprland/workspaces"], + "modules-right": ["network", "wireplumber", "backlight", "battery", "clock"], + "clock": { + "format": "<span foreground='#f5c2e7'> </span>{:%a %d %H:%M}" + }, + "battery": { + "states": { + "warning": 30, + "critical": 15 + }, + "format": "<span foreground='#a6e3a1'>{icon} </span> {capacity}%", + "format-warning": "<span foreground='#B1E3AD'>{icon} </span> {capacity}%", + "format-critical": "<span foreground='#E38C8F'>{icon} </span> {capacity}%", + "format-charging": "<span foreground='#B1E3AD'> </span>{capacity}%", + "format-plugged": "<span foreground='#B1E3AD'> </span>{capacity}%", + "format-icons": ["", "", "", "", ""], + "tooltip-format": "{time}" + }, + "network": { + "format-wifi": " ", + "format-ethernet": "🌐", + "format-linked": "{ifname} (No IP) ", + "format-disconnected": " ", + "tooltip-format-wifi": "{essid}. Signal Strenght: {signalStrength}%" + }, + "wireplumber": { + "format": "{icon} {volume}%", + "format-muted": "🔇", + "format-icons": { + "default": ["🔈", "🔉", "🔊"] + } + }, + "backlight": { + "format": "{icon} {percent}%", + "format-icons": ["🔆"] + } +} diff --git a/waybar/.config/waybar/style.css b/waybar/.config/waybar/style.css new file mode 100755 index 0000000..a1be003 --- /dev/null +++ b/waybar/.config/waybar/style.css @@ -0,0 +1,73 @@ +* { + font-size: 14px; + font-weight: normal; + color: white; +} + +window#waybar { + background: rgba(120, 120, 120, 0.30); +} + +#workspaces { + padding: 2px 0; +} + +#workspaces button { + border: none; + border-radius: 10px; + margin: 0 2px; + padding: 0 6px; +} + +#workspaces button:hover { + background-color: transparent; + background: rgba(120, 120, 120, 0.30); + box-shadow: inherit; + text-shadow: inherit; +} + +#workspaces button.focused { + /*background-color: rgba(0, 0, 0, 0);*/ +} + +#workspaces button.active { + background-color: rgba(0, 0, 0, 0.3); +} + +#workspaces button.urgent { + background-color: #eb4d4b; +} + + +#pulseaudio, +#clock, +#battery, +#cpu, +#memory, +#disk, +#temperature, +#backlight, +#wireplumber, +#tray, +#network, +#mode, +#scratchpad { + margin-top: 2px; + margin-bottom: 2px; + margin-left: 4px; + margin-right: 4px; + padding-left: 4px; + padding-right: 4px; +} + +#network { + color: #9BC7FF +} + +.modules-left>widget:first-child>#workspaces { + margin-left: 10px; +} + +.modules-right>widget:last-child>#workspaces { + margin-right: 0; +} |