My configuration files for Debian/Ubuntu applications
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.

key-handler 192 B

1234567891011
  1. #!/bin/sh
  2. set_wallpaper() {
  3. # paths=$(cat -)
  4. type=$(printf "fill\nmax\ntile\ncenter\nscale" | dmenu -p 'type' )
  5. feh --bg-$type "$(cat /dev/stdin)"
  6. }
  7. case "$1" in
  8. w) set_wallpaper;;
  9. esac