mirror of
https://github.com/Keyitdev/dotfiles.git
synced 2026-09-24 01:52:09 +00:00
Major Update: created v4, new configs: alacritty, polybar, i3, and more.
This commit is contained in:
Executable
+14
@@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
|
||||
dir_icons="/usr/local/bin/icons"
|
||||
|
||||
max_bri=$(cat /sys/class/backlight/*/max_brightness)
|
||||
cur_bri=$(cat /sys/class/backlight/*/brightness)
|
||||
|
||||
cur_per=$((cur_bri * 100 / max_bri))
|
||||
|
||||
if [ "$cur_per" -ge 50 ]; then
|
||||
dunstify "Screen" "Brightness: $cur_per%" -r 100 -i "$dir_icons"/sun.svg
|
||||
else
|
||||
dunstify "Screen" "Brightness: $cur_per%" -r 100 -i "$dir_icons"/moon.svg
|
||||
fi
|
||||
Reference in New Issue
Block a user