12 lines
603 B
Bash
Executable file
12 lines
603 B
Bash
Executable file
#!/usr/bin/zsh
|
|
echo " Press enter if you want openbox and jwm to be installed in the system"
|
|
echo " using joborun linux recommended setup"
|
|
read
|
|
sudo pacman -Suy $(cat /usr/local/bin/X.list) --noconfirm
|
|
echo " exec openbox-session" >>~/.xinitrc
|
|
echo " type xinit to start your openbox session"
|
|
echo " add xinit to your ~/.zlogin or ~/.bashrc to have an X session start after login"
|
|
echo " edit ~/.xinitrc and switch by comment/uncomment openbox-session or "
|
|
echo " depending which one of the two you prefer to have started."
|
|
echo " hit Enter to get to openbox, Ctrl-C to remain in console"
|
|
xinit
|