Created
January 8, 2020 15:20
-
-
Save RayceeM/3ea2773f5eec12bdb422ae91ecbd610b to your computer and use it in GitHub Desktop.
Use this script to make it easy when generating color schemes using pywal. Script is simply a function that takes an argument to change it to a lighter mode or darker mode if no argument passed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function li() { | |
if [ $1 ]; then | |
wal -li ~/Pictures/Wallpapers | |
else | |
wal -i ~/Pictures/Wallpapers | |
fi | |
(cat ~/.cache/wal/sequences &) | |
cat ~/.cache/wal/sequences | |
source ~/.cache/wal/colors-tty.sh | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment