From e6cf56ead8382d6bcd4d9f8d7a28490887bae92a Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Mon, 8 Dec 2025 11:53:23 +0530 Subject: miraged from waybar to quickshell --- waybar/battery_critical.png | Bin 2574 -> 0 bytes waybar/battery_low.png | Bin 2083 -> 0 bytes waybar/brightness.sh | 4 -- waybar/config | 122 -------------------------------------------- waybar/style.css | 23 --------- 5 files changed, 149 deletions(-) delete mode 100644 waybar/battery_critical.png delete mode 100644 waybar/battery_low.png delete mode 100755 waybar/brightness.sh delete mode 100644 waybar/config delete mode 100644 waybar/style.css (limited to 'waybar') diff --git a/waybar/battery_critical.png b/waybar/battery_critical.png deleted file mode 100644 index cf73f50..0000000 Binary files a/waybar/battery_critical.png and /dev/null differ diff --git a/waybar/battery_low.png b/waybar/battery_low.png deleted file mode 100644 index 39d2d89..0000000 Binary files a/waybar/battery_low.png and /dev/null differ diff --git a/waybar/brightness.sh b/waybar/brightness.sh deleted file mode 100755 index cbd597e..0000000 --- a/waybar/brightness.sh +++ /dev/null @@ -1,4 +0,0 @@ -brightness=$(brightnessctl | grep 'Current brightness' | grep -o '[0-9]\+' | head -n 1) -temp=$(hyprctl hyprsunset temperature 2>/dev/null | grep -o '[0-9]\+') -if [ -z "$temp" ]; then temp=6000; fi -echo "Photons:$brightness($tempK)" diff --git a/waybar/config b/waybar/config deleted file mode 100644 index e514a31..0000000 --- a/waybar/config +++ /dev/null @@ -1,122 +0,0 @@ -{ - "layer": "top", - "position": "top", - "height": 36, - "spacing": 0, - "modules-left": [ - "hyprland/workspaces", - ], - "modules-right": [ - "network", - "custom/space", - "battery", - "custom/space", - "pulseaudio", - "custom/space", - "custom/brightness", - "custom/space", - "custom/temperature", - "custom/space", - "memory", - "custom/space", - "cpu", - "custom/space", - "clock", - "custom/space", - ], - "hyprland/workspaces": { - "disable-scroll": false, - "all-outputs": true, - "format": "{icon}", - "on-click": "activate", - "persistent-workspaces": { - "*":[1,2,3,4,5] - }, - }, - "custom/space": { - "format": " ", - }, - "network": { - "format-wifi": "Radio(Wifi):{essid}", - "format-ethernet": "Radio(Ethernet)", - "format-linked": "Radio(Linked){ifname}", - "format-disconnected": "Radio:Offline", - "interval": 1, - "on-click": "foot -e nmtui", - "tooltip-format": "Sending: {bandwidthUpBytes} Receiving: {bandwidthDownBytes}", - }, - "battery": { - "interval": 1, - "states": { - "warning": 30, - "critical": 15 - }, - "format": "Electrons:{capacity}", - "format-charging": "Electrons:AC/DC({capacity})", - "format-discharging-warning": "Electrons:{capacity}", - "format-discharging-critical": "Electrons:{capacity}", - "tooltip": true - }, - "pulseaudio": { - "format": "Waves:{volume}", - "format-muted": "Waves:off", - "format-icons": { - "headphone": "", - "hands-free": "", - "headset": "", - "phone": "", - "portable": "", - "car": "", - "default": [ - "", - "", - "" - ] - }, - "on-click-right": "pavucontrol -t 3", - "on-click": "pactl -- set-sink-mute 0 toggle", - "tooltip": false, - }, - "custom/brightness": { - "exec": "~/.config/waybar/brightness.sh", - "format": "{}", - "interval": 1, - "tooltip": false, - }, - "custom/temperature": { - "exec": "sensors | awk '/^Package id 0:/ {print int($4) + 273}'", - "format": "Radiation:{}K", - "interval": 5, - "tooltip": false, - }, - "memory": { - "format": "Latch:{used}G", - "tooltip": false, - }, - "cpu": { - "format": "Data Bus:{avg_frequency}Hz", - "tooltip": true, - }, - "clock": { - "interval": 1, - "timezone": "Asia/Kolkata", - "format": "Spin:{:%H:%M:%S}", - "calendar": { - "mode" : "year", - "mode-mon-col" : 3, - "weeks-pos" : "right", - "on-scroll" : 1, - "on-click-right": "mode", - "format": { - "months": "{}", - "days": "{}", - "weeks": "W{}", - "weekdays": "{}", - "today": "{}" - } - }, - "tooltip": true, - "format-alt": "Spin:{:L%Y/%m/%d, %A}", - "tooltip-format": "{calendar}", - }, -} diff --git a/waybar/style.css b/waybar/style.css deleted file mode 100644 index 9efc646..0000000 --- a/waybar/style.css +++ /dev/null @@ -1,23 +0,0 @@ -* { - font-family: "JetBrainsMono Nerd Font", monospace; - font-weight: bold; - font-size: 16px; - color: #c6d0f5; - margin: 0; - border-radius: 0px; -} - -#waybar { - background-color: rgb(0, 0, 0); -} - -#workspaces button:hover { - background-color: #303030; - margin: 0px; - border-radius: 0px; -} - -#workspaces button.active { - background-color: #28CD41; - color: #ea999c; -} -- cgit v1.2.3