2020-09-17 16:02:24 +00:00
|
|
|
#!/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)
|
2020-09-18 18:01:58 +00:00
|
|
|
sudo pacman -S --needed \
|
2020-09-17 16:02:24 +00:00
|
|
|
lxappearance arc-gtk-theme arc-icon-theme qt5ct qt5-styleplugins
|
|
|
|
;;
|
2020-09-18 04:16:15 +00:00
|
|
|
esac
|
|
|
|
|
|
|
|
# configuration
|
2020-09-19 15:33:13 +00:00
|
|
|
lnsf $DIR/config/gtk-3.0/settings.ini $XDG_CONFIG_HOME/gtk-3.0/settings.ini
|
|
|
|
lnsf $DIR/config/qt5ct/qt5ct.conf $XDG_CONFIG_HOME/qt5ct/qt5ct.conf
|