Separated all folder

This commit is contained in:
2021-07-09 12:20:06 +02:00
parent a4fa76fc24
commit fb21733874
25 changed files with 0 additions and 0 deletions

26
i3/.config/i3blocks/keyboard Executable file
View File

@ -0,0 +1,26 @@
#!/bin/sh
get_current_layout () {
setxkbmap -print | grep -q dvorak
if [ "$?" -eq "0" ]; then
echo dvorak
else
echo qwertz
fi
}
case "$BLOCK_BUTTON" in
1|2|3)
# Switch layout
current_layout=$(get_current_layout)
if [ $current_layout == dvorak ]; then
setxkbmap -layout de
else
setxkbmap -layout de -variant dvorak
fi
esac
current_layout=$(get_current_layout)
echo "$LABEL $current_layout"
echo "$LABEL $current_layout"