Archlinux basic installation configuration scripts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

76 lines
1.3 KiB

#!/usr/bin/env bash
# Color files
PFILE="$HOME/.config/polybar/forest/colors.ini"
RFILE="$HOME/.config/polybar/forest/scripts/rofi/colors.rasi"
# Change colors
change_color() {
# polybar
sed -i -e "s/background = #.*/background = $BG/g" $PFILE
sed -i -e "s/foreground = #.*/foreground = $FG/g" $PFILE
sed -i -e "s/sep = #.*/sep = $SEP/g" $PFILE
# rofi
cat > $RFILE <<- EOF
/* colors */
* {
al: #00000000;
bg: ${BG}FF;
bga: ${BGA}FF;
fg: ${FG}FF;
ac: ${AC}FF;
se: ${SE}FF;
}
EOF
polybar-msg cmd restart
}
if [[ $1 = "--default" ]]; then
BG="#212B30"
FG="#C4C7C5"
BGA="#263035"
SEP="#3F5360"
AC="#EC407A"
SE="#4DD0E1"
change_color
elif [[ $1 = "--nord" ]]; then
BG="#3B4252"
FG="#E5E9F0"
BGA="#454C5C"
SEP="#5B6579"
AC="#BF616A"
SE="#88C0D0"
change_color
elif [[ $1 = "--gruvbox" ]]; then
BG="#282828"
FG="#EBDBB2"
BGA="#313131"
SEP="#505050"
AC="#FB4934"
SE="#8EC07C"
change_color
elif [[ $1 = "--dark" ]]; then
BG="#141C21"
FG="#93A1A1"
BGA="#1E262B"
SEP="#3C4449"
AC="#D12F2C"
SE="#33C5BA"
change_color
elif [[ $1 = "--cherry" ]]; then
BG="#1F1626"
FG="#FFFFFF"
BGA="#292030"
SEP="#473F4E"
AC="#D94084"
SE="#4F5D95"
change_color
else
cat <<- _EOF_
No option specified, Available options:
--default --nord --gruvbox --dark --cherry
_EOF_
fi