Added checks for wmctrl

This commit is contained in:
Katelyn Hamer 2019-11-03 14:10:53 +00:00
parent c470e7eaa0
commit 5fcd3b82d3

7
lfetch
View file

@ -16,7 +16,12 @@ ram_total() {
# Get WM name (Requires wmctrl to be installed!)
wm_name() {
awk '/Name:/ {print $2}' <(wmctrl -m)
if [ -x "$(command -v wmctrl)" ]
then
awk '/Name:/ {print $2}' <(wmctrl -m)
else
echo "Unknown (Is wmctrl installed?)"
fi
}
# Store OS info (DOES NOT WORK ON ALL SYSTEMS!)