.
This commit is contained in:
parent
56b3646458
commit
e61eb6557d
9 changed files with 37 additions and 36 deletions
|
@ -1 +1 @@
|
||||||
lovelace
|
tokyonight
|
||||||
|
|
|
@ -41,7 +41,7 @@ font-2 = unifont:size=8;1
|
||||||
|
|
||||||
modules-left = workspace
|
modules-left = workspace
|
||||||
modules-center = polywins
|
modules-center = polywins
|
||||||
modules-right = music cpu ram volume bclock
|
modules-right = music cpu ram volume date
|
||||||
|
|
||||||
tray-position = right
|
tray-position = right
|
||||||
tray-padding = 1
|
tray-padding = 1
|
||||||
|
|
0
linux/.config/polybar/scripts/binaryclock-polybar.sh
Normal file → Executable file
0
linux/.config/polybar/scripts/binaryclock-polybar.sh
Normal file → Executable file
0
linux/.config/polybar/scripts/cmus-polybar.sh
Normal file → Executable file
0
linux/.config/polybar/scripts/cmus-polybar.sh
Normal file → Executable file
4
linux/.config/polybar/scripts/polywins.sh
Normal file → Executable file
4
linux/.config/polybar/scripts/polywins.sh
Normal file → Executable file
|
@ -7,7 +7,7 @@ active_text_color="$(xrdb -query | awk '/*.color7:/ { print substr($2,1) }')"
|
||||||
active_bg=
|
active_bg=
|
||||||
active_underline=
|
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_bg=
|
||||||
inactive_underline=
|
inactive_underline=
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ show="window_title" # options: window_title, window_class, window_classname
|
||||||
forbidden_classes="Polybar Conky Gmrun"
|
forbidden_classes="Polybar Conky Gmrun"
|
||||||
empty_desktop_message=""
|
empty_desktop_message=""
|
||||||
|
|
||||||
char_limit=10
|
char_limit=16
|
||||||
max_windows=15
|
max_windows=15
|
||||||
char_case="normal" # normal, upper, lower
|
char_case="normal" # normal, upper, lower
|
||||||
add_spaces="true"
|
add_spaces="true"
|
||||||
|
|
|
@ -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
|
|
||||||
|
|
23
linux/.config/xrdb/colors/tokyonight.xrdb
Normal file
23
linux/.config/xrdb/colors/tokyonight.xrdb
Normal 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
|
|
@ -1,11 +1,11 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
function download {
|
function download {
|
||||||
if [[ -x "$(command -v curl)" ]]; then
|
if [[ -x "$(command -v wget)" ]]; then
|
||||||
curl -fsSL "$1" -o "$2"
|
|
||||||
return $?
|
|
||||||
elif [[ -x "$(command -v wget)" ]]; then
|
|
||||||
wget -qo "$2" "$1"
|
wget -qo "$2" "$1"
|
||||||
return $?
|
return $?
|
||||||
|
elif [[ -x "$(command -v curl)" ]]; then
|
||||||
|
curl -fsSL "$1" -o "$2"
|
||||||
|
return $?
|
||||||
fi
|
fi
|
||||||
echo "Failed to download $1. curl or wget not installed"
|
echo "Failed to download $1. curl or wget not installed"
|
||||||
return 1
|
return 1
|
||||||
|
|
|
@ -15,9 +15,9 @@ cp -rf "${PWD}/.config/xrdb" "${HOME}/.config/xrdb"
|
||||||
#cp "${PWD}/.config/xrdb/main.xrdb" "${HOME}/.Xresources"
|
#cp "${PWD}/.config/xrdb/main.xrdb" "${HOME}/.Xresources"
|
||||||
|
|
||||||
echo "Installing xrdb-replace and config"
|
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"
|
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"
|
echo "Installing bspwm config"
|
||||||
cp -rf "${PWD}/.config/bspwm" "${HOME}/.config/bspwm"
|
cp -rf "${PWD}/.config/bspwm" "${HOME}/.config/bspwm"
|
||||||
|
|
Loading…
Reference in a new issue