Files
dotfiles/.config/screenlayout/apply-screen-layout.sh
2026-02-11 15:46:23 +01:00

14 lines
379 B
Bash
Executable File

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