diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-09-18 12:04:03 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-09-18 12:44:32 +0200 |
| commit | 3c66913cd2d7a37f57c656c282faf7d160e88ea8 (patch) | |
| tree | 4ee1a0e10251e201164bf063ee1b3b13ce1b04df /scripts/qt/make_windows_icon.py | |
| parent | Merge branch 'master' of https://github.com/bitcoin/bitcoin (diff) | |
| download | discoin-3c66913cd2d7a37f57c656c282faf7d160e88ea8.tar.xz discoin-3c66913cd2d7a37f57c656c282faf7d160e88ea8.zip | |
move qt-specific scripts to qt-specific directory in scripts/
Diffstat (limited to 'scripts/qt/make_windows_icon.py')
| -rwxr-xr-x | scripts/qt/make_windows_icon.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/qt/make_windows_icon.py b/scripts/qt/make_windows_icon.py new file mode 100755 index 000000000..bf607b1c6 --- /dev/null +++ b/scripts/qt/make_windows_icon.py @@ -0,0 +1,9 @@ +#!/bin/bash +# create multiresolution windows icon +ICON_SRC=../../src/qt/res/icons/bitcoin.png +ICON_DST=../../src/qt/res/icons/bitcoin.ico +convert ${ICON_SRC} -resize 16x16 bitcoin-16.png +convert ${ICON_SRC} -resize 32x32 bitcoin-32.png +convert ${ICON_SRC} -resize 48x48 bitcoin-48.png +convert bitcoin-16.png bitcoin-32.png bitcoin-48.png ${ICON_DST} + |