change to wayland with river

This commit is contained in:
2025-05-06 00:59:22 +02:00
parent 5c0b690e94
commit 11358663fc
9 changed files with 180 additions and 352 deletions

View File

@@ -0,0 +1,12 @@
hostname=$(hostname)
if [[ "$hostname" == "eliasLaptop" ]]; then
eww open bar --screen eDP-1
# You can put other commands specific to this hostname
elif [[ "$hostname" == "eliasDesktop" ]]; then
echo "This is another PC!"
# Add commands for the second PC
else
echo "This is an unknown PC."
# Add commands for unknown hosts
fi