diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-01-25 13:44:29 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-01-25 13:44:29 +0100 |
commit | 176d9eb9fe859038c9e5e5ea1d0d3616b0d86568 (patch) | |
tree | c499a32633654a4569de4ed355af78486b1f339d /config/essentials/zsh | |
parent | ee1663897dbd785c687dbe53a1ed4bfe6aee2355 (diff) |
use startx on tty1
Diffstat (limited to 'config/essentials/zsh')
-rw-r--r-- | config/essentials/zsh/.zshrc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/essentials/zsh/.zshrc b/config/essentials/zsh/.zshrc index 90f4b14..7785b72 100644 --- a/config/essentials/zsh/.zshrc +++ b/config/essentials/zsh/.zshrc @@ -4,8 +4,8 @@ if [ "$(id -u)" -ne 0 ] then [ "${TTY%%tty*}" = '/dev/' ] && clear case "${TTY#/dev/tty}" in - 1) exec startdwl > /dev/null 2>&1 ;; - 2) exec startx > /dev/null 2>&1 ;; + 1) exec startx > /dev/null 2>&1 ;; + 2) exec startdwl > /dev/null 2>&1 ;; 3) exec startw > /dev/null 2>&1 ;; *) false ;; esac && exit |