10 lines
209 B
Bash
Executable File
10 lines
209 B
Bash
Executable File
#!/bin/bash
|
|
hostname=$(/usr/bin/hostname)
|
|
|
|
if [[ $hostname == "bepis" ]]; then
|
|
$(~/.config/screenlayout/bepis.sh)
|
|
elif [[ $hostname == "bepis-laptop" ]]; then
|
|
$(~/.config/screenlayout/bepis-laptop.sh)
|
|
fi
|
|
|