mirror of
https://github.com/eliasrenman/dotfiles.git
synced 2026-03-16 20:46:08 +01:00
12 lines
223 B
Bash
12 lines
223 B
Bash
#!/bin/bash
|
|
|
|
# Split the string into an array at spaces
|
|
read -ra words <<<"$(xrandr | grep " connected" | awk '{print $1}')"
|
|
|
|
# Count the length of the array
|
|
length=${#words[@]}
|
|
|
|
if [ -z "$length" ]; then
|
|
exec swaylock
|
|
fi
|