mirror of
https://github.com/frebib/dotfiles.git
synced 2024-06-14 12:57:23 +00:00
Add rotation lock i3block
This commit is contained in:
20
.config/i3/blocks/rotation
Executable file
20
.config/i3/blocks/rotation
Executable file
@ -0,0 +1,20 @@
|
||||
#!/bin/sh
|
||||
|
||||
lock="/tmp/rotlock"
|
||||
|
||||
[[ -e $lock ]] || echo "unlocked" > "$lock"
|
||||
|
||||
status=$(<$lock)
|
||||
|
||||
if [ $BLOCK_BUTTON -gt 0 ]; then
|
||||
case $status in
|
||||
"unlocked") status="locked" ;;
|
||||
"locked") status="unlocked";;
|
||||
esac
|
||||
echo $status > "$lock"
|
||||
fi
|
||||
|
||||
case $status in
|
||||
"locked") echo "";;
|
||||
"unlocked") echo "";;
|
||||
esac
|
Reference in New Issue
Block a user