Files
dotfiles/.config/screenlayout/apply-screen-layout.sh
2024-05-26 13:48:29 +02:00

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