Move App Icons function to functions.md
This commit is contained in:
parent
512ec6a23a
commit
5312a9cac7
27
README.md
27
README.md
@ -241,33 +241,6 @@ hash tmutil &> /dev/null && sudo tmutil enablelocal
|
|||||||
|
|
||||||
## Developer
|
## Developer
|
||||||
|
|
||||||
### App Icons
|
|
||||||
|
|
||||||
#### Create App Icon
|
|
||||||
Function to quickly create an application icon from 1024px master file.
|
|
||||||
```bash
|
|
||||||
function mkicns() {
|
|
||||||
if [[ -z "$@" ]]; then
|
|
||||||
echo "Input file missing"
|
|
||||||
else
|
|
||||||
filename=${1%.*}
|
|
||||||
mkdir $filename.iconset
|
|
||||||
sips -z 16 16 $1 --out $filename.iconset/icon_16x16.png
|
|
||||||
sips -z 32 32 $1 --out $filename.iconset/icon_16x16@2x.png
|
|
||||||
sips -z 32 32 $1 --out $filename.iconset/icon_32x32.png
|
|
||||||
sips -z 64 64 $1 --out $filename.iconset/icon_32x32@2x.png
|
|
||||||
sips -z 128 128 $1 --out $filename.iconset/icon_128x128.png
|
|
||||||
sips -z 256 256 $1 --out $filename.iconset/icon_128x128@2x.png
|
|
||||||
sips -z 256 256 $1 --out $filename.iconset/icon_256x256.png
|
|
||||||
sips -z 512 512 $1 --out $filename.iconset/icon_256x256@2x.png
|
|
||||||
sips -z 512 512 $1 --out $filename.iconset/icon_512x512.png
|
|
||||||
cp $1 $filename.iconset/icon_512x512@2x.png
|
|
||||||
iconutil -c icns $filename.iconset
|
|
||||||
rm -r $filename.iconset
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Vim
|
### Vim
|
||||||
|
|
||||||
#### Compile Sane Vim
|
#### Compile Sane Vim
|
||||||
|
32
functions.md
32
functions.md
@ -6,9 +6,41 @@
|
|||||||
|
|
||||||
## Table of Contents
|
## Table of Contents
|
||||||
|
|
||||||
|
- [Developer](#developer)
|
||||||
|
- [App Icons](#app-icons)
|
||||||
- [Finder](#finder)
|
- [Finder](#finder)
|
||||||
|
|
||||||
|
|
||||||
|
## Developer
|
||||||
|
|
||||||
|
### App Icons
|
||||||
|
|
||||||
|
#### Create App Icon
|
||||||
|
Function to quickly create an application icon from 1024px master file.
|
||||||
|
```bash
|
||||||
|
function mkicns() {
|
||||||
|
if [[ -z "$@" ]]; then
|
||||||
|
echo "Input file missing"
|
||||||
|
else
|
||||||
|
filename=${1%.*}
|
||||||
|
mkdir $filename.iconset
|
||||||
|
sips -z 16 16 $1 --out $filename.iconset/icon_16x16.png
|
||||||
|
sips -z 32 32 $1 --out $filename.iconset/icon_16x16@2x.png
|
||||||
|
sips -z 32 32 $1 --out $filename.iconset/icon_32x32.png
|
||||||
|
sips -z 64 64 $1 --out $filename.iconset/icon_32x32@2x.png
|
||||||
|
sips -z 128 128 $1 --out $filename.iconset/icon_128x128.png
|
||||||
|
sips -z 256 256 $1 --out $filename.iconset/icon_128x128@2x.png
|
||||||
|
sips -z 256 256 $1 --out $filename.iconset/icon_256x256.png
|
||||||
|
sips -z 512 512 $1 --out $filename.iconset/icon_256x256@2x.png
|
||||||
|
sips -z 512 512 $1 --out $filename.iconset/icon_512x512.png
|
||||||
|
cp $1 $filename.iconset/icon_512x512@2x.png
|
||||||
|
iconutil -c icns $filename.iconset
|
||||||
|
rm -r $filename.iconset
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Finder
|
## Finder
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user