Merge branch 'master' of github.com:LukeSmithxyz/voidrice
This commit is contained in:
commit
a2e0d2441b
3 changed files with 15 additions and 16 deletions
|
@ -70,5 +70,5 @@ map <c-r> reload
|
|||
map <enter> shell
|
||||
map x $$f
|
||||
map X !$f
|
||||
map o &mimeopen $f
|
||||
map O $mimeopen --ask $f
|
||||
map o &mimeopen "$f"
|
||||
map O $mimeopen --ask "$f"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/sh
|
||||
# Give a battery name (e.g. BAT0) as an argument.
|
||||
# Give a battery name (Check the battery name from sys/class/power_supply/ e.g. BAT0 or BAT1 and pass it as an argument.
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
3) pgrep -x dunst >/dev/null && notify-send "🔋 Battery module" "🔋: discharging
|
||||
|
|
|
@ -1,17 +1,16 @@
|
|||
#!/bin/sh
|
||||
|
||||
mnphs=$(pom | grep -io 'new\|waxing cresent\|first quarter\|waxing gibbous\|full\|waning gibbous\|last quarter\|waning cresent' | grep -m1 '.')
|
||||
prcnt=$(pom | grep -o '..%')
|
||||
|
||||
case $mnphs in
|
||||
"New") icon="🌑" ;;
|
||||
"Waxing Cresent") icon="🌒" ;;
|
||||
"First Quarter") icon="🌓" ;;
|
||||
mnphs=$(pom $1 | grep -o 'New\|Waxing Crescent\|First Quarter\|Waxing Gibbous\|Full\|Waning Gibbous\|Last Quarter\|Waning Crescent' | grep -m1 '.')
|
||||
prcnt=$(pom $1 | grep -o '[[:digit:]]*%')
|
||||
case "$mnphs" in
|
||||
"New") icon="🌑" prcnt="0%" ;;
|
||||
"Waxing Crescent") icon="🌒" ;;
|
||||
"First Quarter") icon="🌓" prcnt="50%" ;;
|
||||
"Waxing Gibbous") icon="🌔" ;;
|
||||
"Full") icon="🌕" ;;
|
||||
"Full") icon="🌕" prcnt="100%" ;;
|
||||
"Waning Gibbous") icon="🌖" ;;
|
||||
"Last Quarter") icon="🌗" ;;
|
||||
"Waning Cresent") icon="🌘" ;;
|
||||
"Last Quarter") icon="🌗" prcnt="50%" ;;
|
||||
"Waning Crescent") icon="🌘" ;;
|
||||
*) echo errorrrr ;;
|
||||
esac
|
||||
|
||||
|
|
Loading…
Reference in a new issue