Dotfiles for my tiling window manager + terminal workflow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
278 B

  1. #!/bin/bash
  2. base_bg_path="/home/kevin/Pictures/Backgrounds"
  3. brightness_choice=$(echo -e "dim\nbright" | dmenu -i)
  4. editing_choice=$(echo -e "editing\nnon-editing" | dmenu -i)
  5. bg_path="$base_bg_path/$brightness_choice/$editing_choice"
  6. wal_cmd="wal -i $bg_path"
  7. eval "$wal_cmd"