blob: 9a3de1dbced92e76c7c054cabcaa740e8401604d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/fish
set dir "/home/eric.marin/Pictures/Backgrounds/"
set chosen (
for file in (find $dir -type f)
if test -z $img; or test $file != $img
echo "$file"
end
end | cut -d '/' -f6 | fuzzel --dmenu)
~/.config/scripts/set_background (echo $dir$chosen)
|