10 lines
150 B
Bash
10 lines
150 B
Bash
#!/bin/sh
|
|
|
|
if [ $# -gt 0 ]; then
|
|
$*
|
|
else
|
|
setxkbmap "us,us" ",intl" "grp:shifts_toggle"
|
|
[ -f ~/.Xmodmap ] && xmodmap ~/.Xmodmap
|
|
|
|
i3
|
|
fi
|