This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
display dialog "Desktop icons visible or hidden?" buttons {"Visible", "Hidden"} with icon 2 with title "Switch to presentation mode" default button 1 | |
set switch to button returned of result | |
if switch is "Hidden" then | |
do shell script "defaults write com.apple.finder CreateDesktop -bool FALSE;killall Finder" | |
else | |
do shell script "defaults delete com.apple.finder CreateDesktop;killall Finder" | |
end if |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
display dialog "Desktop icons visible or hidden?" buttons {"Visible", "Hidden"} with icon 2 with title "Switch to presentation mode" default button 1 | |
set switch to button returned of result | |
if switch is "Hidden" then | |
do shell script "defaults write com.apple.finder CreateDesktop -bool FALSE;killall Finder" | |
else | |
do shell script "defaults delete com.apple.finder CreateDesktop;killall Finder" | |
end if |