From fac09e89913623c163419f517b483d182d422493 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Wed, 25 Jan 2017 11:42:53 -0800 Subject: [PATCH] add scripts to show and hide icons on the desktop --- hide-icons | 4 ++++ show-icons | 4 ++++ 2 files changed, 8 insertions(+) create mode 100755 hide-icons create mode 100755 show-icons diff --git a/hide-icons b/hide-icons new file mode 100755 index 0000000..6c1018b --- /dev/null +++ b/hide-icons @@ -0,0 +1,4 @@ +#!/bin/sh + +defaults write com.apple.finder CreateDesktop false +killall Finder diff --git a/show-icons b/show-icons new file mode 100755 index 0000000..02c0480 --- /dev/null +++ b/show-icons @@ -0,0 +1,4 @@ +#!/bin/sh + +defaults write com.apple.finder CreateDesktop true +killall Finder