~dricottone/my-utils

ref: b29d2b4a9bcb2e3b35c41e5dbb43d6e031999a06 my-utils/check-x.sh -rwxr-xr-x 151 bytes
b29d2b4aDominic Ricottone Restarting with fresh commit history 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

# check-x.sh
# ==========
# Usage: check-x.sh
#
# Check if an X server is running

if ! xset q &>/dev/null; then
  exit 1
else
  exit 0
fi