Marty Oehme
5c433ca99e
Binds mirror qutebrowser theming: sd/sD/sl/sL sdD changes to dark variants, slL to light variants. Uses gruvbox for small letters, themes mimicking pencil/one for large letters.
8 lines
340 B
Bash
8 lines
340 B
Bash
#!/bin/sh
|
|
|
|
if type wal >/dev/null 2>&1; then
|
|
alias sd="wal --theme gruvbox" # grubbox dark
|
|
alias sD="wal --theme vscode" # pencil-like dark theme
|
|
alias sl="wal --theme base16-gruvbox-medium -l" # pencil-like light theme
|
|
alias sL="wal --theme 3024 -l" # pencil-like light theme
|
|
fi
|