Files
dotfiles/.config/screenlayout/apply-screen-layout.sh
2025-02-16 12:14:04 +01:00

12 lines
284 B
Bash
Executable File

#!/bin/bash
hostname=$(cat ~/hostname)
if [[ $hostname == "bepis" ]]; then
$(~/.config/screenlayout/desktop.sh)
elif [[ $hostname == "arch-bepis" ]]; then
$(~/.config/screenlayout/desktop.sh)
elif [[ $hostname == "bepis-laptop" ]]; then
$(~/.config/screenlayout/laptop.sh)
fi