Changed config, including improved animations, vim-like navigation, and better defaults

This commit is contained in:
Gu://em_ 2026-07-08 18:46:20 +02:00
parent 2d0b6962fa
commit 3070701380
7 changed files with 36 additions and 26 deletions

View file

@ -142,11 +142,14 @@
},
"custom/battery_percentage": {
"format": "{}",
//"exec": "cat /sys/class/power_supply/BAT*/capacity",
// Makes battery like if 85% was the maximum capacity (100%).
// The first "exec" line makes battery like if 85% was the maximum capacity (100%).
// Useful for people that limit charge up to a certain percentage but like having real percentage
"exec": "echo $(( $(cat /sys/class/power_supply/BAT*/capacity) * 100 / 85 ))%",
// The second behaves normally, just comment the one you don't want
// "exec": "echo $(( $(cat /sys/class/power_supply/BAT*/capacity) * 100 / 85 ))%",
"exec": "echo $(cat /sys/class/power_supply/BAT*/capacity)%",
"interval": 10,
"tooltip": false
},