Commit d396e529 authored by Dylan Araps's avatar Dylan Araps

DE: Exit function if DE == WM

parent 4d8bebec
...@@ -561,7 +561,7 @@ get_de() { ...@@ -561,7 +561,7 @@ get_de() {
fi fi
# If DE == WM unset DE. # If DE == WM unset DE.
[[ "$de" =~ $wm ]] && unset -v de [[ "$de" =~ $wm ]] && { unset -v de; return; }
;; ;;
esac esac
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment