Initial chezmoi commit

This commit is contained in:
2019-04-15 00:05:48 -04:00
parent 69bb713ff4
commit fda3907f92
106 changed files with 8 additions and 562 deletions

View File

@@ -0,0 +1,17 @@
#!/bin/bash
base_bg_path="/home/kevin/Pictures/Backgrounds"
brightness_choice=$(echo -e "dim\nbright" | dmenu -i)
EDITING_CHOICES=("non-editing" "editing")
# editing_choice=$(echo -e "${EDITING_CHOICES[0]}\n${EDITING_CHOICES[1]}" | dmenu -i)
editing_choice="non-editing"
if [[ "$editing_choice" = "${EDITING_CHOICES[0]}" ]]; then
rand=$(( RANDOM % 2 ))
editing_choice=${EDITING_CHOICES[$rand]}
fi
bg_path="$base_bg_path/$brightness_choice/$editing_choice"
wal_cmd="wal -i $bg_path"
eval "$wal_cmd"
# echo "$wal_cmd"