
banned from #gentoo since sept 2017Neddyseagoon wrote:The problem with leaving is that you can only do it once and it reduces your influence.

Code: Select all
#!/bin/bash
# Read and assign choice to a.
echo "1. Xfce"
echo "2. dwm"
echo "Please enter selection: "
read a
# If choice is 1, then run Xfce.
if [ "$a" -eq 1 ]
then
startxfce4
fi
# If choice is 2, then run dwm.
if [ "$a" -eq 2 ]
then
X; exec /home/sabeeh/Programming/Bash-scripts/dwm-session.sh
fi