This commit is contained in:
relikd
2026-01-27 16:07:35 +01:00
commit 1eca425c5f
23 changed files with 540 additions and 0 deletions

8
examples/Toggle Desktop Icons Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
prev=$(defaults read com.apple.finder CreateDesktop)
if [ "$prev" = 0 ]; then
flag=1
else
flag=0
fi
defaults write com.apple.finder CreateDesktop $flag && killall Finder