Skip to content

Instantly share code, notes, and snippets.

View RayceeM's full-sized avatar

Racheal Mwatela RayceeM

View GitHub Profile
@RayceeM
RayceeM / pywal.sh
Created January 8, 2020 15:20
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.
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
@RayceeM
RayceeM / gist:53f8b0fe177276cbf55bffe78b6c72e8
Created May 23, 2019 11:58
Reference Error :Can't find variable when running cljbuild tests
This occurred when I upgraded to ubuntu version 18.04
Unistall the current version of phantom js and reinstall.Used this as a guide: https://gist.github.com/telbiyski/ec56a92d7114b8631c906c18064ce620
Run `lein cljsbuild test` to see if error is solved.