chore(sway): increment/decrement sinks by 1% instead of 5%

This commit is contained in:
2025-07-28 09:28:44 +02:00
parent 78bcc74ed9
commit c48f2b462b
2 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
#!/bin/bash
increment() {
brightnessctl set 5%+
brightnessctl set 1%+
}
decrement() {
@@ -14,7 +14,7 @@ decrement() {
if [[ "$current_value" == "6000" ]]; then
brightnessctl set 4
else
brightnessctl set 5%-
brightnessctl set 1%-
fi
}