Skip to content

Instantly share code, notes, and snippets.

View MegaV0lt's full-sized avatar
🐧

MegaV0lt MegaV0lt

🐧
View GitHub Profile
@pstaender
pstaender / change_wallpaper.sh
Created September 28, 2018 12:44
Change wallpaper in Linux Mint (cinnamon) according to daytime with MacOS Mojave wallpapers
#!/bin/bash
wallpaper=`ruby get_wallpaper_url.rb`
# https://stackoverflow.com/questions/10374520/gsettings-with-cron#19666729
PID=$(pgrep -fo cinnamon-session)
export DBUS_SESSION_BUS_ADDRESS=$(grep -z DBUS_SESSION_BUS_ADDRESS /proc/$PID/environ|cut -d= -f2-)
gsettings set org.cinnamon.desktop.background picture-uri "file://${wallpaper}"