From 5c433ca99e09fa1b9e35366db278bc79316a0b3a Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Fri, 29 Nov 2019 21:07:18 +0100 Subject: [PATCH] Add binds for quick access to pywal themes 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. --- .config/shell/rc.d/alias-pywal.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .config/shell/rc.d/alias-pywal.sh diff --git a/.config/shell/rc.d/alias-pywal.sh b/.config/shell/rc.d/alias-pywal.sh new file mode 100644 index 0000000..53e5566 --- /dev/null +++ b/.config/shell/rc.d/alias-pywal.sh @@ -0,0 +1,8 @@ +#!/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