16 lines
337 B
Bash
16 lines
337 B
Bash
#!/bin/bash
|
|
|
|
DIR=$(readlink -f $(dirname $0))
|
|
. $DIR/../env.sh
|
|
|
|
# for better looking
|
|
case "$PM" in
|
|
apt)
|
|
sudo apt install -y \
|
|
lxappearance arc-theme qt5ct qt5-style-plugins
|
|
;;
|
|
pacman)
|
|
sudo pacman -S \
|
|
lxappearance arc-gtk-theme arc-icon-theme qt5ct qt5-styleplugins
|
|
;;
|
|
esac |