first collection of useful scripts
This commit is contained in:
6
bright
Executable file
6
bright
Executable file
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
# Script to siimply change the brightness
|
||||
level=$(echo "$(seq 1 100)" | dmenu -i -p 'Brightnesss from 1-100')
|
||||
percentage=$(echo "$level/100" | bc -l | head -c 4)
|
||||
[ -z "$percentage" ] && exit 0
|
||||
xrandr --output eDP-1 --brightness $percentage
|
||||
Reference in New Issue
Block a user