6 lines
200 B
Bash
Executable file
6 lines
200 B
Bash
Executable file
#!/bin/bash
|
|
|
|
background="$HOME/Pictures/background/Red-billed_streamertail_Trochilus_polytmus_female_in_flight_2_modified_colours.jpg"
|
|
[[ -n $1 ]] && background="$1"
|
|
|
|
exec feh --bg-fill "$background"
|