Files
dotfiles/.config/keyboard/apply-keyboard-layout.sh
2023-09-21 15:10:55 +02:00

11 lines
233 B
Bash
Executable File

#!/bin/bash
hostname=$(/usr/bin/hostname)
if [[ hostname -eq "bepis" ]]; then
echo "bepis"
$(~/.config/keyboard/qwerty.sh)
elif [[ hostname -eq "bepis-laptop" ]]; then
echo "bepis-laptop"
$(~/.config/keyboard/colemak.sh)
fi