better uname checks

This commit is contained in:
Moritz Böhme 2021-05-11 11:21:15 +02:00
parent cc3bbf0fa2
commit 736d178241
2 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
#!/bin/bash
# MONITORS #
if [ "$(uname -n)" = 'arch-desktop' ]; then
if [[ "$(uname -n)" == *'desktop'* ]]; then
bspc monitor HDMI-0 -d 1 2 3 4 5
bspc monitor HDMI-1 -d 6 7 8 9 10
else