14 lines
655 B
Cheetah
14 lines
655 B
Cheetah
{{- if (eq .host.distro.id "qubes") -}}
|
|
#!/usr/bin/env bash
|
|
# @file Qubes Set Wallpaper
|
|
# @brief Ensures the Qubes wallpaper is set to the Betelgeuse wallpaper for Qubes.
|
|
# @description
|
|
# This script ensures the Qubes desktop wallpaper is set to the Qubes Betelgeuse wallpaper on KDE by
|
|
# using the `ksetwallpaper` script found in `~/.local/bin/ksetwallpaper`.
|
|
|
|
{{ includeTemplate "universal/profile" }}
|
|
{{ includeTemplate "universal/logg" }}
|
|
|
|
logg info 'Setting wallpaper to /usr/local/share/wallpapers/Betelgeuse/contents/images/3440x1440.jpg'
|
|
ksetwallpaper --file /usr/local/share/wallpapers/Betelgeuse/contents/images/3440x1440.jpg
|
|
{{ end -}}
|