11 lines
233 B
Bash
Executable File
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 |