mirror of
https://github.com/Dejvino/pinephone-sway-poc.git
synced 2024-11-05 07:40:04 +00:00
17 lines
201 B
Plaintext
17 lines
201 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
BACKLIGHT=~/.backlight
|
||
|
|
||
|
dialog --menu EXECUTE 20 40 12 \
|
||
|
10 FULL \
|
||
|
9 . \
|
||
|
8 . \
|
||
|
7 . \
|
||
|
6 . \
|
||
|
5 . \
|
||
|
4 . \
|
||
|
3 . \
|
||
|
2 MIN \
|
||
|
2>$BACKLIGHT && pptk-backlight set `cat $BACKLIGHT`
|
||
|
|