17 lines
No EOL
296 B
Bash
Executable file
17 lines
No EOL
296 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# SCRIPT NAME:
|
|
# wallpaper
|
|
#
|
|
# AUTHOR:
|
|
# Severin Kaderli <severin@kaderli.dev>
|
|
#
|
|
# DESCRIPTION:
|
|
# Sets the wallpaper using feh
|
|
#
|
|
# USAGE:
|
|
# ./wallpaper
|
|
. /home/severin/.local/bin/utils
|
|
|
|
HOST="$(hostname)"
|
|
feh --bg-fill --no-fehbg "${DOTFILES}/assets/wallpaper.${HOST}.jpg" |