diff --git a/module/common/bash/module/Wallpaper.sh b/module/common/bash/module/Wallpaper.sh deleted file mode 100644 index f2cb2bc2..00000000 --- a/module/common/bash/module/Wallpaper.sh +++ /dev/null @@ -1,14 +0,0 @@ -# Set specified file as a wallpaper. -# Usage: wallpaper -function wallpaper() { - local target="${1}" - local path_wallpaper=~/.local/share/backgrounds/background.jpg - - if [[ "${target}" = "" ]]; then - help wallpaper - return 2 - fi - - cp "${target}" "${path_wallpaper}" - chmod 644 "${path_wallpaper}" -}