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