10 lines
232 B
Bash
Executable File
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 |