mirror of
https://github.com/Dejvino/pinephone-sway-poc.git
synced 2024-11-05 15:50:05 +00:00
16 lines
193 B
Bash
Executable File
16 lines
193 B
Bash
Executable File
#!/bin/bash
|
|
|
|
BACKLIGHT=~/.backlight
|
|
|
|
dialog --menu Backlight 0 0 10 \
|
|
10 FULL \
|
|
9 . \
|
|
8 . \
|
|
7 . \
|
|
6 . \
|
|
5 . \
|
|
4 . \
|
|
3 MIN \
|
|
2>$BACKLIGHT && pptk-backlight set `cat $BACKLIGHT`
|
|
|