Added lxqt

This commit is contained in:
2021-11-09 08:48:46 -08:00
parent e818eaa784
commit fa00d3d64f
3 changed files with 11 additions and 1 deletions

View File

@ -1,5 +1,8 @@
#!/bin/bash
# Grant SH execute
chmod +x ./**/*.sh
# Disable running as root.
if [[ "$EUID" -eq 0 ]]; then
echo "Please do not run as root"

7
scripts/install-lxqt.sh Normal file
View File

@ -0,0 +1,7 @@
#!/bin/bash
sudo pacman -S lxqt xorg-server sddm
echo "exec startlxqt" >> ~/.xinitrc
sudo systemctl enable sddm.service
# Start
sudo systemctl start sddm.service

View File

@ -2,7 +2,7 @@
# NVM
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash
export NVM_DIR="$HOME/.nvm"
NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"