mirror of
				https://github.com/tiyn/dotfiles.git
				synced 2025-10-31 20:41:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			725 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			725 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| layout=$(setxkbmap -query | grep "layout" | awk '{print $NF}') #| grep -q 'ru$' && $(setxkbmap de ; notify-send -u low 'SXHKD' 'Set keymap to german') || $(setxkbmap de ru ; notify-send -u low 'SXHKD' 'Set keymap to russian')
 | |
| variant=$(setxkbmap -query | grep "variant" | awk '{print $NF}')
 | |
| echo $variant
 | |
| if [ "$layout" = "de" -a "$variant" = "nodeadkeys" ]
 | |
| then
 | |
|     setxkbmap de && notify-send -u low 'SXHKD' 'Set keymap to german'
 | |
| elif [ "$layout" = "de" -a "$variant" = "" ]
 | |
| then
 | |
|     setxkbmap de ru && notify-send -u low 'SXHKD' 'Set keymap to russian (german)'
 | |
| elif [ "$layout" = "de" -a "$variant" = "ru" ]
 | |
| then
 | |
|     setxkbmap de nodeadkeys && notify-send -u low 'SXHKD' 'Set keymap to german (nodeadkeys)'
 | |
| fi
 |