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

10 lines
232 B
Bash
Executable File

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