Changed waybar config on desktop

This commit is contained in:
2026-02-15 14:51:16 +08:00
parent 86495e561a
commit 740297097b
5 changed files with 84 additions and 12 deletions

View File

@@ -42,9 +42,7 @@ bar {
colors {
focused_workspace $b01 $b01 $b05
}
font pango:Hack Nerd Font 10
position bottom
status_command ~/.config/sway/status.sh
swaybar_command waybar
}
input type:keyboard {

View File

@@ -1,9 +0,0 @@
#!/bin/sh
while :; do
temp=$(awk '{printf "%d", $1/1000}' /sys/class/thermal/thermal_zone0/temp 2>/dev/null || echo n/a)
datetime=$(date +'%a %d %b %T')
echo " ${temp}C | ${datetime}"
sleep 1
done