|
@@ -24,9 +24,12 @@ First, set the icon you wish to use like you always would (right-click, Get Info
|
24
|
24
|
Next, we need to create a little shell script that copies this file again after it is lost on reboot:
|
25
|
25
|
|
26
|
26
|
vim /Users/thomas/bin/fixBootcamp.sh
|
|
27
|
+
|
27
|
28
|
#!/bin/sh
|
28
|
29
|
cp /Users/thomas/Pictures/Icons/VolumeIcon.icns /Volumes/TX-55/.VolumeIcon.icns
|
|
30
|
+
|
29
|
31
|
:wq
|
|
32
|
+ chmod a+x /Users/thomas/bin/fixBootcamp.sh
|
30
|
33
|
|
31
|
34
|
Finally create a LaunchAgent property list:
|
32
|
35
|
|
|
@@ -55,5 +58,5 @@ To test it without logging out and back in:
|
55
|
58
|
|
56
|
59
|
launchctl start de.xythobuz.fixBootcamp
|
57
|
60
|
|
58
|
|
-That was easy, right? :)
|
|
61
|
+That was easy, right? :) *Tested on OS X Yosemite 10.10.4...*
|
59
|
62
|
|