This commit is contained in:
Cynthia Foxwell 2022-10-21 09:38:42 -06:00
parent 56b3646458
commit e61eb6557d
9 changed files with 37 additions and 36 deletions

View File

@ -1 +1 @@
lovelace
tokyonight

View File

@ -41,7 +41,7 @@ font-2 = unifont:size=8;1
modules-left = workspace
modules-center = polywins
modules-right = music cpu ram volume bclock
modules-right = music cpu ram volume date
tray-position = right
tray-padding = 1

0
linux/.config/polybar/scripts/binaryclock-polybar.sh Normal file → Executable file
View File

0
linux/.config/polybar/scripts/cmus-polybar.sh Normal file → Executable file
View File

4
linux/.config/polybar/scripts/polywins.sh Normal file → Executable file
View File

@ -7,7 +7,7 @@ active_text_color="$(xrdb -query | awk '/*.color7:/ { print substr($2,1) }')"
active_bg=
active_underline=
inactive_text_color="$(xrdb -query | awk '/*.cursorColor2:/ { print substr($2,1) }')"
inactive_text_color="$(xrdb -query | awk '/*.color0:/ { print substr($2,1) }')"
inactive_bg=
inactive_underline=
@ -16,7 +16,7 @@ show="window_title" # options: window_title, window_class, window_classname
forbidden_classes="Polybar Conky Gmrun"
empty_desktop_message=""
char_limit=10
char_limit=16
max_windows=15
char_case="normal" # normal, upper, lower
add_spaces="true"

View File

@ -1,22 +0,0 @@
*.background: #02131a
*.foreground: #a9b1d6
*.cursorColor: #B5E8E0
*.color0: #1a1b26
*.color1: #f7768e
*.color2: #9ece6a
*.color3: #e0af68
*.color4: #7aa2f7
*.color5: #ad8ee6
*.color6: #449dab
*.color7: #787c99
*.color8: #444b6a
*.color9: #ff7a93
*.color10: #b9f27c
*.color11: #ff9e64
*.color12: #7da6ff
*.color13: #bb9af7
*.color14: #0db9d7
*.color15: #acb0d0

View File

@ -0,0 +1,23 @@
! special
*.foreground: #a9b1d6
*.background: #1a1b26
*.cursorColor: #444b6a
! colors
*.color0: #32344a
*.color1: #f7768e
*.color2: #9ece6a
*.color3: #e0af68
*.color4: #7aa2f7
*.color5: #ad8ee6
*.color6: #449dab
*.color7: #787c99
*.color8: #444b6a
*.color9: #ff7a93
*.color10: #b9f27c
*.color11: #ff9e64
*.color12: #7da6ff
*.color13: #bb9af7
*.color14: #0db9d7
*.color15: #acb0d0

View File

@ -1,11 +1,11 @@
#!/usr/bin/env bash
function download {
if [[ -x "$(command -v curl)" ]]; then
curl -fsSL "$1" -o "$2"
return $?
elif [[ -x "$(command -v wget)" ]]; then
if [[ -x "$(command -v wget)" ]]; then
wget -qo "$2" "$1"
return $?
elif [[ -x "$(command -v curl)" ]]; then
curl -fsSL "$1" -o "$2"
return $?
fi
echo "Failed to download $1. curl or wget not installed"
return 1

View File

@ -15,9 +15,9 @@ cp -rf "${PWD}/.config/xrdb" "${HOME}/.config/xrdb"
#cp "${PWD}/.config/xrdb/main.xrdb" "${HOME}/.Xresources"
echo "Installing xrdb-replace and config"
download "https://raw.githubusercontent.com/palmdrop/xrdb-replace/main/xrdb-replace" "${HOME}/.local/bin"
download "https://raw.githubusercontent.com/palmdrop/xrdb-replace/main/xrdb-replace" "${HOME}/.local/bin/xrdb-replace"
chmod +x "${HOME}/.local/bin/xrdb-replace"
cp -rf "${PWD}/.config/xrdb-replace"
cp -rf "${PWD}/.config/xrdb-replace" "${HOME}/.config/xrdb-replace"
echo "Installing bspwm config"
cp -rf "${PWD}/.config/bspwm" "${HOME}/.config/bspwm"