Add GPU status to waybar
This commit is contained in:
parent
6a27e22e9e
commit
384340ad2a
3 changed files with 198 additions and 152 deletions
|
@ -6,9 +6,21 @@
|
|||
"passthrough": false,
|
||||
"gtk-layer-shell": true,
|
||||
"height": 50,
|
||||
"modules-left": ["clock","custom/weather","hyprland/workspaces"],
|
||||
"modules-left": ["clock", "custom/weather", "hyprland/workspaces"],
|
||||
"modules-center": ["hyprland/window"],
|
||||
"modules-right": ["network", "bluetooth", "memory", "cpu", "temperature","custom/power_profile","battery","pulseaudio","pulseaudio#microphone","tray"],
|
||||
"modules-right": [
|
||||
"network",
|
||||
"bluetooth",
|
||||
"memory",
|
||||
"cpu",
|
||||
"temperature",
|
||||
"custom/power_profile",
|
||||
"custom/gpu_status",
|
||||
"battery",
|
||||
"pulseaudio",
|
||||
"pulseaudio#microphone",
|
||||
"tray"
|
||||
],
|
||||
"hyprland/window": {
|
||||
"format": "{}"
|
||||
},
|
||||
|
@ -16,7 +28,7 @@
|
|||
"hyprland/workspaces": {
|
||||
"disable-scroll": true,
|
||||
"all-outputs": true,
|
||||
"on-click": "activate",
|
||||
"on-click": "activate"
|
||||
/*
|
||||
"persistent_workspaces": {
|
||||
"1": [],
|
||||
|
@ -32,7 +44,7 @@
|
|||
}*/
|
||||
},
|
||||
|
||||
"custom/power_profile":{
|
||||
"custom/power_profile": {
|
||||
//shows the current power profile and switches to next on click
|
||||
"exec": "~/.config/waybar/scripts/powerprofile.sh",
|
||||
"return-type": "json",
|
||||
|
@ -43,13 +55,13 @@
|
|||
"signal": 8
|
||||
},
|
||||
|
||||
"custom/weather" : {
|
||||
"custom/weather": {
|
||||
//shows the current weather and forecast
|
||||
"tooltip" : true,
|
||||
"format" : "{}",
|
||||
"interval" : 30,
|
||||
"exec" : "~/.config/waybar/scripts/waybar-wttr.py",
|
||||
"return-type" : "json"
|
||||
"tooltip": true,
|
||||
"format": "{}",
|
||||
"interval": 120,
|
||||
"exec": "~/.config/waybar/scripts/waybar-wttr.py",
|
||||
"return-type": "json"
|
||||
},
|
||||
|
||||
"tray": {
|
||||
|
@ -84,6 +96,15 @@
|
|||
"format-icons": ["", "", "", "", ""]
|
||||
},
|
||||
|
||||
"custom/gpu_status": {
|
||||
"exec": "~/.config/waybar/scripts/gpu_status.sh",
|
||||
"return-type": "json",
|
||||
"interval": 2,
|
||||
"tooltip": false,
|
||||
"format": "{}",
|
||||
"signal": 9
|
||||
},
|
||||
|
||||
"pulseaudio": {
|
||||
"format": "{icon} {volume}%",
|
||||
"tooltip": false,
|
||||
|
@ -139,7 +160,7 @@
|
|||
"states": {
|
||||
"critical": 90,
|
||||
"warning": 50
|
||||
},
|
||||
}
|
||||
},
|
||||
|
||||
"memory": {
|
||||
|
@ -162,4 +183,3 @@
|
|||
"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 {
|
||||
color: #a6adc8;
|
||||
background: #3F84E5;
|
||||
background: #3f84e5;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
color: #11111b;
|
||||
background: #FC6471;
|
||||
background: #fc6471;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
|
@ -44,6 +44,7 @@ tooltip {
|
|||
}
|
||||
|
||||
#custom-power_profile,
|
||||
#custom-gpu_status,
|
||||
#custom-weather,
|
||||
#window,
|
||||
#clock,
|
||||
|
@ -62,7 +63,6 @@ tooltip {
|
|||
padding: 0px 10px;
|
||||
margin: 3px 0px;
|
||||
margin-top: 10px;
|
||||
border: 1px solid #181825;
|
||||
}
|
||||
|
||||
#memory {
|
||||
|
@ -71,11 +71,11 @@ tooltip {
|
|||
}
|
||||
|
||||
#memory.warning {
|
||||
color: #EDAE49;
|
||||
color: #edae49;
|
||||
}
|
||||
|
||||
#memory.critical {
|
||||
color: #FC6471;
|
||||
color: #fc6471;
|
||||
}
|
||||
|
||||
#cpu {
|
||||
|
@ -84,11 +84,11 @@ tooltip {
|
|||
}
|
||||
|
||||
#cpu.warning {
|
||||
color: #EDAE49;
|
||||
color: #edae49;
|
||||
}
|
||||
|
||||
#cpu.critical {
|
||||
color: #FC6471;
|
||||
color: #fc6471;
|
||||
}
|
||||
|
||||
#temperature {
|
||||
|
@ -97,7 +97,7 @@ tooltip {
|
|||
}
|
||||
|
||||
#temperature.critical {
|
||||
color: #FC6471;
|
||||
color: #fc6471;
|
||||
}
|
||||
|
||||
#backlight {
|
||||
|
@ -124,11 +124,21 @@ tooltip {
|
|||
}
|
||||
|
||||
#custom-power_profile.Performance {
|
||||
color: #FC6471;
|
||||
color: #fc6471;
|
||||
}
|
||||
|
||||
#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 {
|
||||
|
@ -154,7 +164,7 @@ tooltip {
|
|||
#bluetooth {
|
||||
color: #89b4fa;
|
||||
border-radius: 0px 10px 10px 0px;
|
||||
margin-right: 10px
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
#pulseaudio {
|
||||
|
|
Loading…
Reference in a new issue