summaryrefslogtreecommitdiff
path: root/config/essentials/zsh
diff options
context:
space:
mode:
authorRaymaekers Luca <raymaekers.luca@gmail.com>2023-10-20 20:24:04 +0200
committerRaymaekers Luca <raymaekers.luca@gmail.com>2023-10-20 20:24:04 +0200
commite658b9abed15fcf0f6947f4c92d5c1809aa7da0e (patch)
treeef9a4b3fb56807ca41ca4b0f1a0479186ee0b120 /config/essentials/zsh
parentbd0e2020cea05c171c2fce7f44ed4946e3ce5aec (diff)
set 'dwl' as default (tty1)
Diffstat (limited to 'config/essentials/zsh')
-rw-r--r--config/essentials/zsh/.zshrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/essentials/zsh/.zshrc b/config/essentials/zsh/.zshrc
index e46cf8e..7a2f945 100644
--- a/config/essentials/zsh/.zshrc
+++ b/config/essentials/zsh/.zshrc
@@ -4,9 +4,9 @@ if [ "$(id -u)" -ne 0 ]
then
clear
case "${TTY#/dev/tty}" in
- 1) exec startw > /dev/null 2>&1 ;;
+ 1) exec startdwl > /dev/null 2>&1 ;;
2) exec startx > /dev/null 2>&1 ;;
- 3) exec startdwl > /dev/null 2>&1 ;;
+ 3) exec startw > /dev/null 2>&1 ;;
*) false ;;
esac && exit
fi