1
0
Fork 0

Compare commits

...

5 commits

Author SHA1 Message Date
28378adf62 update askpass.sh syntax 2025-08-12 07:20:35 -04:00
e245a6a2b1 add askpass.sh for backup purposes 2025-08-12 07:19:44 -04:00
f78917a0f1 GSu askpass window setting 2025-08-12 07:17:31 -04:00
9966012ddf add dark/light theme scripts & gtk+qt pywal integration 2025-08-12 07:17:11 -04:00
f1783fd5bc add walcord 2025-08-12 05:46:25 -04:00
6 changed files with 44 additions and 5 deletions

5
apps
View file

@ -57,3 +57,8 @@
[app] (name=Thunar) (class=Thunar) (role=Thunar-1754807489-1631646063)
[Position] (UPPERLEFT) {8% 11%}
[end]
[app] (name=yad) (class=GSu)
[Position] (UPPERLEFT) {38% 39%}
[Sticky] {yes}
[Layer] {2}
[end]

9
menu
View file

@ -34,8 +34,13 @@
[separator]
[exec] (Kill all dockapps) {pkill -e 'wmusic|wmamixer|wmcpuload|wmsysmon|wmmemfree'}
[end]
[submenu] (Wallpapers) {Choose a wallpaper...} # obviously depends on pywal16
[wallpapers] (~/Pictures/Wallpapers) {~/.fluxbox/scripts/wal-fill.sh}
[submenu] (Wallpapers) {Choose a theme...} # see scripts folder
[submenu] (Dark theme) {Choose a wallpaper...}
[wallpapers] (~/Pictures/Wallpapers) {~/.fluxbox/scripts/wal-dark.sh}
[end]
[submenu] (Light theme) {Choose a wallpaper...}
[wallpapers] (~/Pictures/Wallpapers) {~/.fluxbox/scripts/wal-light.sh}
[end]
[end]
[separator]
[submenu] (Fluxbox menu) {Fluxbox menu}

6
scripts/askpass.sh Executable file
View file

@ -0,0 +1,6 @@
#!/bin/sh
yad --class="GSu" \
--title="Password" \
--text="Enter sudo password:" \
--image="dialog-password" \
--entry --hide-text

13
scripts/wal-dark.sh Executable file
View file

@ -0,0 +1,13 @@
#!/bin/sh
wal -c
wal -n --cols16 -i "$@"
feh --bg-fill "$(< "${HOME}/.cache/wal/wal")"
# gtk and kvantum update
gradience-cli apply -p ~/.cache/wal/pywal.json --gtk both
mkdir -p "${HOME}"/.config/Kvantum/pywal
cp "${HOME}"/.cache/wal/pywal.kvconfig "${HOME}"/.config/Kvantum/pywal/pywal.kvconfig
cp "${HOME}"/.cache/wal/pywal.svg "${HOME}"/.config/Kvantum/pywal/pywal.svg
walcord # discord update

View file

@ -1,3 +0,0 @@
#!/bin/sh
wal -n --cols16 -i "$@"
feh --bg-fill "$(< "${HOME}/.cache/wal/wal")"

13
scripts/wal-light.sh Executable file
View file

@ -0,0 +1,13 @@
#!/bin/sh
wal -c
wal -n -l --cols16 -i "$@"
feh --bg-fill "$(< "${HOME}/.cache/wal/wal")"
# gtk and kvantum update
gradience-cli apply -p ~/.cache/wal/pywal.json --gtk both
mkdir -p "${HOME}"/.config/Kvantum/pywal
cp "${HOME}"/.cache/wal/pywal.kvconfig "${HOME}"/.config/Kvantum/pywal/pywal.kvconfig
cp "${HOME}"/.cache/wal/pywal.svg "${HOME}"/.config/Kvantum/pywal/pywal.svg
walcord # discord update