adapt desktop

adapt config so that it works on desktop too
This commit is contained in:
2026-03-20 23:00:30 +01:00
parent 39a9bad8f4
commit 70497a93d0
10 changed files with 179 additions and 107 deletions

View File

@@ -1,10 +1,9 @@
hostname=$(hostname)
HOST_NAME=$(hostname)
if [[ "$hostname" == "eliasLaptop" ]]; then
if [[ "$HOST_NAME" == "eliasLaptop" ]]; then
eww open bar --screen eDP-1
/home/elias/.config/eww/scripts/ristate.sh
elif [[ "$hostname" == "eliasDesktop" ]]; then
echo "This is another PC!"
else
echo "This is an unknown PC."
elif [[ "$HOST_NAME" == "eliasDesktop" ]]; then
eww open bar --screen DVI-D-1
/home/elias/.config/eww/scripts/ristate.sh
fi