109 lines
2.2 KiB
Plaintext
109 lines
2.2 KiB
Plaintext
{
|
|
"layer": "top",
|
|
"position": "top",
|
|
|
|
"modules-left": [
|
|
"cpu",
|
|
"custom/cpu_temp",
|
|
|
|
"memory",
|
|
|
|
"custom/gpu",
|
|
"custom/gpu_temp",
|
|
|
|
"custom/disk",
|
|
"custom/disk_hdd"
|
|
],
|
|
|
|
"modules-center": ["clock"],
|
|
"modules-right": ["custom/net_speed", "network", "pulseaudio","custom/keyboard-state", "tray", "custom/uptime", "custom/power"],
|
|
"custom/net_speed": {
|
|
"exec": "~/.config/waybar/scripts/net_speed.sh",
|
|
"interval": 1,
|
|
"format": "{}",
|
|
"return-type": "string"
|
|
},
|
|
|
|
"cpu": {
|
|
"format": " {usage}%",
|
|
"interval": 1
|
|
},
|
|
|
|
"custom/cpu_temp": {
|
|
"exec": "~/.config/waybar/scripts/cpu_temp.sh",
|
|
"interval": 1,
|
|
"format": " {}°C",
|
|
"return-type": "string"
|
|
},
|
|
"memory": {
|
|
"format": " {used:0.1f}G",
|
|
"interval": 1
|
|
},
|
|
|
|
"custom/gpu": {
|
|
"exec": "~/.config/waybar/scripts/gpu_usage.sh",
|
|
"interval": 1,
|
|
"format": " {}%",
|
|
"return-type": "string"
|
|
},
|
|
|
|
"custom/gpu_temp": {
|
|
"exec": "~/.config/waybar/scripts/gpu_temp.sh",
|
|
"interval": 1,
|
|
"format": " {}°C",
|
|
"return-type": "string"
|
|
},
|
|
|
|
"custom/disk": {
|
|
"exec": "~/.config/waybar/scripts/disk_usage.sh",
|
|
"interval": 60,
|
|
"format": " {}",
|
|
"return-type": "string"
|
|
},
|
|
|
|
"custom/disk_hdd": {
|
|
"exec": "~/.config/waybar/scripts/disk_hdd.sh",
|
|
"interval": 60,
|
|
"format": " {}",
|
|
"return-type": "string"
|
|
},
|
|
|
|
"clock": {
|
|
"format": " {:%H:%M %d.%m.%Y}"
|
|
},
|
|
|
|
"network": {
|
|
"format-wifi": " {essid} ({signalStrength}%)",
|
|
"format-ethernet": "🖧 {ipaddr}",
|
|
"format-disconnected": " No Net"
|
|
},
|
|
|
|
"pulseaudio": {
|
|
"format": " {volume}%",
|
|
"format-muted": " mute",
|
|
"on-click": "pactl set-sink-mute @DEFAULT_SINK@ toggle"
|
|
},
|
|
"tray": {
|
|
"icon-size": 16,
|
|
"spacing": 10,
|
|
"types": ["systemtray"]
|
|
},
|
|
"custom/uptime": {
|
|
"exec": "uptime -p | sed 's/up //'",
|
|
"interval": 60,
|
|
"format": " {}",
|
|
"return-type": "string"
|
|
},
|
|
"custom/power": {
|
|
"format": "",
|
|
"tooltip": "Power Menu",
|
|
"on-click": "~/.config/waybar/scripts/power_menu.sh"
|
|
},
|
|
"custom/keyboard-state": {
|
|
"exec": "/home/aneuhmanh/.config/waybar/scripts/keyboard_state_daemon.sh",
|
|
"format": "{}",
|
|
"return-type": "text",
|
|
"tail": true
|
|
}
|
|
}
|