Add GPU status to waybar
This commit is contained in:
parent
6a27e22e9e
commit
384340ad2a
3 changed files with 198 additions and 152 deletions
|
@ -1,23 +1,35 @@
|
||||||
{
|
{
|
||||||
"layer": "top",
|
"layer": "top",
|
||||||
"position": "top",
|
"position": "top",
|
||||||
"mod": "dock",
|
"mod": "dock",
|
||||||
"exclusive": true,
|
"exclusive": true,
|
||||||
"passthrough": false,
|
"passthrough": false,
|
||||||
"gtk-layer-shell": true,
|
"gtk-layer-shell": true,
|
||||||
"height": 50,
|
"height": 50,
|
||||||
"modules-left": ["clock","custom/weather","hyprland/workspaces"],
|
"modules-left": ["clock", "custom/weather", "hyprland/workspaces"],
|
||||||
"modules-center": ["hyprland/window"],
|
"modules-center": ["hyprland/window"],
|
||||||
"modules-right": ["network", "bluetooth", "memory", "cpu", "temperature","custom/power_profile","battery","pulseaudio","pulseaudio#microphone","tray"],
|
"modules-right": [
|
||||||
"hyprland/window": {
|
"network",
|
||||||
"format": "{}"
|
"bluetooth",
|
||||||
},
|
"memory",
|
||||||
|
"cpu",
|
||||||
|
"temperature",
|
||||||
|
"custom/power_profile",
|
||||||
|
"custom/gpu_status",
|
||||||
|
"battery",
|
||||||
|
"pulseaudio",
|
||||||
|
"pulseaudio#microphone",
|
||||||
|
"tray"
|
||||||
|
],
|
||||||
|
"hyprland/window": {
|
||||||
|
"format": "{}"
|
||||||
|
},
|
||||||
|
|
||||||
"hyprland/workspaces": {
|
"hyprland/workspaces": {
|
||||||
"disable-scroll": true,
|
"disable-scroll": true,
|
||||||
"all-outputs": true,
|
"all-outputs": true,
|
||||||
"on-click": "activate",
|
"on-click": "activate"
|
||||||
/*
|
/*
|
||||||
"persistent_workspaces": {
|
"persistent_workspaces": {
|
||||||
"1": [],
|
"1": [],
|
||||||
"2": [],
|
"2": [],
|
||||||
|
@ -30,136 +42,144 @@
|
||||||
"9": [],
|
"9": [],
|
||||||
"10": []
|
"10": []
|
||||||
}*/
|
}*/
|
||||||
},
|
},
|
||||||
|
|
||||||
"custom/power_profile":{
|
"custom/power_profile": {
|
||||||
//shows the current power profile and switches to next on click
|
//shows the current power profile and switches to next on click
|
||||||
"exec": "~/.config/waybar/scripts/powerprofile.sh",
|
"exec": "~/.config/waybar/scripts/powerprofile.sh",
|
||||||
"return-type": "json",
|
"return-type": "json",
|
||||||
"interval": 30,
|
"interval": 30,
|
||||||
"tooltip": false,
|
"tooltip": false,
|
||||||
"format": " {}",
|
"format": " {}",
|
||||||
"on-click": "asusctl profile -n; pkill -SIGRTMIN+8 waybar",
|
"on-click": "asusctl profile -n; pkill -SIGRTMIN+8 waybar",
|
||||||
"signal": 8
|
"signal": 8
|
||||||
},
|
},
|
||||||
|
|
||||||
"custom/weather" : {
|
"custom/weather": {
|
||||||
//shows the current weather and forecast
|
//shows the current weather and forecast
|
||||||
"tooltip" : true,
|
"tooltip": true,
|
||||||
"format" : "{}",
|
"format": "{}",
|
||||||
"interval" : 30,
|
"interval": 120,
|
||||||
"exec" : "~/.config/waybar/scripts/waybar-wttr.py",
|
"exec": "~/.config/waybar/scripts/waybar-wttr.py",
|
||||||
"return-type" : "json"
|
"return-type": "json"
|
||||||
},
|
},
|
||||||
|
|
||||||
"tray": {
|
"tray": {
|
||||||
"icon-size": 18,
|
"icon-size": 18,
|
||||||
"spacing": 10
|
"spacing": 10
|
||||||
},
|
},
|
||||||
|
|
||||||
"clock": {
|
"clock": {
|
||||||
"format": "{: %H:%M %a, %b %e}",
|
"format": "{: %H:%M %a, %b %e}",
|
||||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>"
|
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>"
|
||||||
},
|
},
|
||||||
|
|
||||||
"backlight": {
|
"backlight": {
|
||||||
"device": "asus::kbd_backlight",
|
"device": "asus::kbd_backlight",
|
||||||
"format": "{icon} {percent}%",
|
"format": "{icon} {percent}%",
|
||||||
"format-icons": ["", "", ""],
|
"format-icons": ["", "", ""],
|
||||||
"on-scroll-up": "brightnessctl set 1%+",
|
"on-scroll-up": "brightnessctl set 1%+",
|
||||||
"on-scroll-down": "brightnessctl set 1%-",
|
"on-scroll-down": "brightnessctl set 1%-",
|
||||||
"min-length": 6
|
"min-length": 6
|
||||||
},
|
},
|
||||||
|
|
||||||
"battery": {
|
"battery": {
|
||||||
"states": {
|
"states": {
|
||||||
"good": 95,
|
"good": 95,
|
||||||
"warning": 30,
|
"warning": 30,
|
||||||
"critical": 20
|
"critical": 20
|
||||||
},
|
|
||||||
"format": "{icon} {capacity}%",
|
|
||||||
"format-charging": " {capacity}%",
|
|
||||||
"format-plugged": " {capacity}%",
|
|
||||||
"format-alt": "{time} {icon}",
|
|
||||||
"format-icons": ["", "", "", "", ""]
|
|
||||||
},
|
},
|
||||||
|
"format": "{icon} {capacity}%",
|
||||||
|
"format-charging": " {capacity}%",
|
||||||
|
"format-plugged": " {capacity}%",
|
||||||
|
"format-alt": "{time} {icon}",
|
||||||
|
"format-icons": ["", "", "", "", ""]
|
||||||
|
},
|
||||||
|
|
||||||
"pulseaudio": {
|
"custom/gpu_status": {
|
||||||
"format": "{icon} {volume}%",
|
"exec": "~/.config/waybar/scripts/gpu_status.sh",
|
||||||
"tooltip": false,
|
"return-type": "json",
|
||||||
"format-muted": " Muted",
|
"interval": 2,
|
||||||
"on-click": "pamixer -t",
|
"tooltip": false,
|
||||||
"on-scroll-up": "pamixer -i 5",
|
"format": "{}",
|
||||||
"on-scroll-down": "pamixer -d 5",
|
"signal": 9
|
||||||
"scroll-step": 5,
|
},
|
||||||
"format-icons": {
|
|
||||||
"headphone": "",
|
|
||||||
"hands-free": "",
|
|
||||||
"headset": "",
|
|
||||||
"phone": "",
|
|
||||||
"portable": "",
|
|
||||||
"car": "",
|
|
||||||
"default": ["", "", ""]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
"pulseaudio#microphone": {
|
"pulseaudio": {
|
||||||
"format": "{format_source}",
|
"format": "{icon} {volume}%",
|
||||||
"format-source": " {volume}%",
|
"tooltip": false,
|
||||||
"format-source-muted": " Muted",
|
"format-muted": " Muted",
|
||||||
"on-click": "pamixer --default-source -t",
|
"on-click": "pamixer -t",
|
||||||
"on-scroll-up": "pamixer --default-source -i 5",
|
"on-scroll-up": "pamixer -i 5",
|
||||||
"on-scroll-down": "pamixer --default-source -d 5",
|
"on-scroll-down": "pamixer -d 5",
|
||||||
"scroll-step": 5,
|
"scroll-step": 5,
|
||||||
"tooltip": false
|
"format-icons": {
|
||||||
},
|
"headphone": "",
|
||||||
|
"hands-free": "",
|
||||||
"temperature": {
|
"headset": "",
|
||||||
"thermal-zone": 0,
|
"phone": "",
|
||||||
"critical-threshold": 80,
|
"portable": "",
|
||||||
"format": "{temperatureC}°C ",
|
"car": "",
|
||||||
"format-critical": "{temperatureC}°C ",
|
"default": ["", "", ""]
|
||||||
"tooltip": false
|
|
||||||
},
|
|
||||||
|
|
||||||
"network": {
|
|
||||||
"interface": "wlan0", // (Optional) To force the use of this interface
|
|
||||||
"format-wifi": " {signalStrength}%",
|
|
||||||
"format-ethernet": "{ifname}: {ipaddr}/{cidr} ",
|
|
||||||
"tooltip-format": "{essid} - {ifname} via {gwaddr} ",
|
|
||||||
"format-linked": "{ifname} (No IP) ",
|
|
||||||
"format-disconnected": "Disconnected ⚠",
|
|
||||||
"format-alt": "{ifname}:{essid} {ipaddr}/{cidr}"
|
|
||||||
},
|
|
||||||
|
|
||||||
"cpu": {
|
|
||||||
"interval": 1,
|
|
||||||
"format": " {usage:>2}%",
|
|
||||||
"format-icons": ["▁", "▂", "▃", "▄", "▅", "▆", "▇", "█"],
|
|
||||||
"states": {
|
|
||||||
"critical": 90,
|
|
||||||
"warning": 50
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
"memory": {
|
|
||||||
"interval": 1,
|
|
||||||
"format": " {used:0.1f}G/{total:0.1f}G",
|
|
||||||
"states": {
|
|
||||||
"critical": 90,
|
|
||||||
"warning": 50
|
|
||||||
},
|
|
||||||
"tooltip": false
|
|
||||||
},
|
|
||||||
|
|
||||||
"bluetooth": {
|
|
||||||
"format": " {status}",
|
|
||||||
"format-disabled": "", // an empty format will hide the module
|
|
||||||
"format-connected": " {num_connections}",
|
|
||||||
"tooltip-format": "{device_alias}",
|
|
||||||
"tooltip-format-connected": " {device_enumerate}",
|
|
||||||
"tooltip-format-enumerate-connected": "{device_alias}",
|
|
||||||
"on-click": "/usr/bin/blueman-manager"
|
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
|
||||||
|
"pulseaudio#microphone": {
|
||||||
|
"format": "{format_source}",
|
||||||
|
"format-source": " {volume}%",
|
||||||
|
"format-source-muted": " Muted",
|
||||||
|
"on-click": "pamixer --default-source -t",
|
||||||
|
"on-scroll-up": "pamixer --default-source -i 5",
|
||||||
|
"on-scroll-down": "pamixer --default-source -d 5",
|
||||||
|
"scroll-step": 5,
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
"temperature": {
|
||||||
|
"thermal-zone": 0,
|
||||||
|
"critical-threshold": 80,
|
||||||
|
"format": "{temperatureC}°C ",
|
||||||
|
"format-critical": "{temperatureC}°C ",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
"network": {
|
||||||
|
"interface": "wlan0", // (Optional) To force the use of this interface
|
||||||
|
"format-wifi": " {signalStrength}%",
|
||||||
|
"format-ethernet": "{ifname}: {ipaddr}/{cidr} ",
|
||||||
|
"tooltip-format": "{essid} - {ifname} via {gwaddr} ",
|
||||||
|
"format-linked": "{ifname} (No IP) ",
|
||||||
|
"format-disconnected": "Disconnected ⚠",
|
||||||
|
"format-alt": "{ifname}:{essid} {ipaddr}/{cidr}"
|
||||||
|
},
|
||||||
|
|
||||||
|
"cpu": {
|
||||||
|
"interval": 1,
|
||||||
|
"format": " {usage:>2}%",
|
||||||
|
"format-icons": ["▁", "▂", "▃", "▄", "▅", "▆", "▇", "█"],
|
||||||
|
"states": {
|
||||||
|
"critical": 90,
|
||||||
|
"warning": 50
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
"memory": {
|
||||||
|
"interval": 1,
|
||||||
|
"format": " {used:0.1f}G/{total:0.1f}G",
|
||||||
|
"states": {
|
||||||
|
"critical": 90,
|
||||||
|
"warning": 50
|
||||||
|
},
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
"bluetooth": {
|
||||||
|
"format": " {status}",
|
||||||
|
"format-disabled": "", // an empty format will hide the module
|
||||||
|
"format-connected": " {num_connections}",
|
||||||
|
"tooltip-format": "{device_alias}",
|
||||||
|
"tooltip-format-connected": " {device_enumerate}",
|
||||||
|
"tooltip-format-enumerate-connected": "{device_alias}",
|
||||||
|
"on-click": "/usr/bin/blueman-manager"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
16
bar/waybar/scripts/gpu_status.sh
Executable file
16
bar/waybar/scripts/gpu_status.sh
Executable file
|
@ -0,0 +1,16 @@
|
||||||
|
#!/bin/bash
|
||||||
|
ACTIVE_ICON=''
|
||||||
|
SUSPENDED_ICON=''
|
||||||
|
RESUMING_ICON=''
|
||||||
|
|
||||||
|
icon=$ACTIVE_ICON
|
||||||
|
status=$(cat /sys/bus/pci/devices/0000:01:00.0/power/runtime_status)
|
||||||
|
|
||||||
|
if [ "$status" == "suspended" ]; then
|
||||||
|
icon=$SUSPENDED_ICON
|
||||||
|
elif [ "$status" == "resuming" ]; then
|
||||||
|
icon=$RESUMING_ICON
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "{\"text\": \"$icon\", \"class\": \"$status\"}"
|
||||||
|
|
|
@ -28,13 +28,13 @@ tooltip {
|
||||||
|
|
||||||
#workspaces button.active {
|
#workspaces button.active {
|
||||||
color: #a6adc8;
|
color: #a6adc8;
|
||||||
background: #3F84E5;
|
background: #3f84e5;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.urgent {
|
#workspaces button.urgent {
|
||||||
color: #11111b;
|
color: #11111b;
|
||||||
background: #FC6471;
|
background: #fc6471;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -44,6 +44,7 @@ tooltip {
|
||||||
}
|
}
|
||||||
|
|
||||||
#custom-power_profile,
|
#custom-power_profile,
|
||||||
|
#custom-gpu_status,
|
||||||
#custom-weather,
|
#custom-weather,
|
||||||
#window,
|
#window,
|
||||||
#clock,
|
#clock,
|
||||||
|
@ -62,7 +63,6 @@ tooltip {
|
||||||
padding: 0px 10px;
|
padding: 0px 10px;
|
||||||
margin: 3px 0px;
|
margin: 3px 0px;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
border: 1px solid #181825;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#memory {
|
#memory {
|
||||||
|
@ -71,11 +71,11 @@ tooltip {
|
||||||
}
|
}
|
||||||
|
|
||||||
#memory.warning {
|
#memory.warning {
|
||||||
color: #EDAE49;
|
color: #edae49;
|
||||||
}
|
}
|
||||||
|
|
||||||
#memory.critical {
|
#memory.critical {
|
||||||
color: #FC6471;
|
color: #fc6471;
|
||||||
}
|
}
|
||||||
|
|
||||||
#cpu {
|
#cpu {
|
||||||
|
@ -84,11 +84,11 @@ tooltip {
|
||||||
}
|
}
|
||||||
|
|
||||||
#cpu.warning {
|
#cpu.warning {
|
||||||
color: #EDAE49;
|
color: #edae49;
|
||||||
}
|
}
|
||||||
|
|
||||||
#cpu.critical {
|
#cpu.critical {
|
||||||
color: #FC6471;
|
color: #fc6471;
|
||||||
}
|
}
|
||||||
|
|
||||||
#temperature {
|
#temperature {
|
||||||
|
@ -97,7 +97,7 @@ tooltip {
|
||||||
}
|
}
|
||||||
|
|
||||||
#temperature.critical {
|
#temperature.critical {
|
||||||
color: #FC6471;
|
color: #fc6471;
|
||||||
}
|
}
|
||||||
|
|
||||||
#backlight {
|
#backlight {
|
||||||
|
@ -124,11 +124,21 @@ tooltip {
|
||||||
}
|
}
|
||||||
|
|
||||||
#custom-power_profile.Performance {
|
#custom-power_profile.Performance {
|
||||||
color: #FC6471;
|
color: #fc6471;
|
||||||
}
|
}
|
||||||
|
|
||||||
#custom-power_profile.Balanced {
|
#custom-power_profile.Balanced {
|
||||||
color: #EDAE49;
|
color: #edae49;
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-gpu_status {
|
||||||
|
color: #a6e3a1;
|
||||||
|
padding-top: 3px;
|
||||||
|
padding-left: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-gpu_status:not(.suspended) {
|
||||||
|
color: #edae49;
|
||||||
}
|
}
|
||||||
|
|
||||||
#window {
|
#window {
|
||||||
|
@ -154,7 +164,7 @@ tooltip {
|
||||||
#bluetooth {
|
#bluetooth {
|
||||||
color: #89b4fa;
|
color: #89b4fa;
|
||||||
border-radius: 0px 10px 10px 0px;
|
border-radius: 0px 10px 10px 0px;
|
||||||
margin-right: 10px
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pulseaudio {
|
#pulseaudio {
|
||||||
|
|
Loading…
Reference in a new issue