dotfiles/gui/theme.sh
2020-11-09 00:26:14 +08:00

25 lines
620 B
Bash

#!/bin/sh
set -e
DIR=$(dirname "$(readlink -f "$0")")
. "$DIR/../env.sh"
# for better looking
case "$PM" in
apt)
sudo apt install -y \
lxappearance arc-theme qt5ct qt5-style-plugins
# install arc-icon-theme
git clone https://github.com/horst3180/arc-icon-theme --depth 1 /tmp/arc-icon-theme && cd /tmp/arc-icon-theme
./autogen.sh --prefix=/usr
sudo make install
rm -rf /tmp/arc-icon-theme
cd -
;;
pacman)
sudo pacman -S --needed \
lxappearance arc-gtk-theme arc-icon-theme qt5ct qt5-styleplugins
;;
esac