install.fairie/docs/scripts/after/run_onchange_after_11-set-wallpaper.sh.tmpl.md
2023-08-08 03:06:49 -04:00

1.4 KiB

title description sidebar_label slug githubLocation scriptLocation repoLocation
Qubes Set Wallpaper Ensures the Qubes wallpaper is set to the Betelgeuse wallpaper for Qubes. 11 Qubes Set Wallpaper /scripts/after/run_onchange_after_11-set-wallpaper.sh.tmpl https://github.com/megabyte-labs/install.doctor/blob/master/home/.chezmoiscripts/universal/run_onchange_after_11-set-wallpaper.sh.tmpl https://github.com/megabyte-labs/install.doctor/raw/master/home/.chezmoiscripts/universal/run_onchange_after_11-set-wallpaper.sh.tmpl home/.chezmoiscripts/universal/run_onchange_after_11-set-wallpaper.sh.tmpl

Qubes Set Wallpaper

Ensures the Qubes wallpaper is set to the Betelgeuse wallpaper for Qubes.

Overview

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.

Source Code

{{- 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`.

ksetwallpaper --file /usr/local/share/wallpapers/Betelgeuse/contents/images/3440x1440.jpg
{{ end -}}