Change wallpaper option to be our 4k version of the dell classic.

This commit is contained in:
The Ghost of FOSS' Past 2024-11-02 18:29:23 -05:00
parent 255d405345
commit 20bcbceeb5
2 changed files with 5 additions and 5 deletions

BIN
dell4k.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 MiB

View file

@ -1,10 +1,10 @@
# Prevents wallpaper/screensaver fingerprinting... (annyoing!)
echo "[DSMOSS] Prevent wallpaper/screensaver fingerprinting... "
osascript -e 'tell application "System Events" to set picture of desktop 1 to POSIX file "/System/Library/Desktop Pictures/Solid Colors/Black.png"'
sudo defaults write /Library/Preferences/com.apple.loginwindow DesktopPicture "/System/Library/Desktop Pictures/Solid Colors/Black.png"
# Update wallpaper/screensaver
echo "[DSMOSS] Update wallpaper/screensaver to slightly less intensive ones... "
osascript -e "tell application \"System Events\" to set picture of desktop 1 to POSIX file \"$(realpath dell4k.png)\""
sudo defaults write /Library/Preferences/com.apple.loginwindow DesktopPicture "$(realpath dell4k.png)"
sudo defaults write /Library/Preferences/com.apple.screensaver modulePath -string "/System/Library/Screen Savers/Blank.saver"
defaults -currentHost write com.apple.screensaver modulePath -string "/System/Library/Screen Savers/Blank.saver"
defaults -currentHost write com.apple.screensaver idleTime -int 666 # Adjust time in seconds as needed
defaults -currentHost write com.apple.screensaver idleTime -int 666
# Set the key repeat faster (somewhat annoying.)
echo "[DSMOSS] Set the key repeat faster..."