Skip to content

Commit

Permalink
Fix base64 usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Dec 10, 2024
1 parent 44a8660 commit af22158
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protocols/profiles/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ Create a *multi-TIFF* containing the needed icon sizes:
/usr/bin/sips -s format png -z 128 128 -s dpiHeight 72.0 -s dpiWidth 72.0 ${png} --out ${tmp}/icon_256.png
/usr/bin/tiffutil -cathidpicheck ${tmp}/icon_64x64@2x.png ${tmp}/icon_64x64.png ${tmp}/icon_96.png ${tmp}/icon_96@2x.png ${tmp}/icon_256.png ${tmp}/icon_256@2x.png -out ${target}/ disk.tiff
```
3. Use the command ``` base64 ./disk.tiff -b 70 ``` to generate the base64 version of the multi-TIFF file. This final version will be used for the connection profile.
3. Use the command `cat disk.tiff | base64 -b 70` to generate the base64 version of the multi-TIFF file. This final version will be used for the connection profile.
## Sample Connection Profiles
Expand Down

0 comments on commit af22158

Please sign in to comment.