11 lines
178 B
Bash
Executable File
11 lines
178 B
Bash
Executable File
#!/bin/bash
|
|
|
|
##
|
|
# Switches to the given keyboard (argument) and sets
|
|
# xmodmap to $2 so that everything works as expected.
|
|
##
|
|
|
|
setxkbmap "$1"
|
|
|
|
xmodmap -pke "$2" > /dev/null 2>&1
|