mirror of
https://github.com/vale981/dotfiles
synced 2025-03-06 01:51:40 -05:00
5 lines
77 B
Bash
Executable file
5 lines
77 B
Bash
Executable file
#!/bin/bash
|
|
URL=$1
|
|
FILE=$(mktemp)
|
|
wget -q $URL -O $FILE
|
|
feh --bg-fill $FILE
|