diff --git a/.profile b/.profile index f90fb09..04a7710 100644 --- a/.profile +++ b/.profile @@ -1,4 +1,19 @@ if [ -z $DISPLAY ] && [ $(tty) = /dev/tty1 ]; then + echo "Select:" + echo "0. DWM (default)" + echo "1. Onlyfox" + echo "2. Pohui, idem v tty" + read USER_CHOISE + USER_CHOISE=$(($USER_CHOISE + 0)) + if [[ $USER_CHOISE -eq 1 ]] + then + startx firefox + elif [[ $USER_CHOISE -eq 2 ]] + then + echo "Nice choise)" + else + startx + fi startx fi