mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2024-11-12 20:19:37 +01:00
12 lines
199 B
Bash
Executable File
12 lines
199 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
variant=$(setxkbmap -query | grep variant | cut -d" " -f5)
|
|
|
|
if [[ $variant == "cdhisopt" ]]
|
|
then
|
|
setxkbmap us cdhpt -option ''
|
|
else
|
|
setxkbmap us cdhisopt 'caps:ctrl_modifier'
|
|
fi
|