6 lines
119 B
Bash
Executable file
6 lines
119 B
Bash
Executable file
#!/bin/bash
|
|
|
|
background="$HOME/.config/i3/background"
|
|
[[ -n $1 ]] && background="$1"
|
|
|
|
exec feh --bg-fill "$background"
|