diff --git a/README.md b/README.md
index 2a892ffb..edfdc20a 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-#
WebTorrent.app
+#
WebTorrent.app
[![Gitter][webtorrent-gitter-image]][webtorrent-gitter-url]
[![Travis Build][webtorrent-app-travis-image]][webtorrent-app-travis-url]
diff --git a/bin/package.js b/bin/package.js
index 53aa9b05..ae40b006 100755
--- a/bin/package.js
+++ b/bin/package.js
@@ -66,7 +66,7 @@ var darwin = {
'helper-bundle-id': 'io.webtorrent.app.helper',
// Application icon.
- icon: path.join(__dirname, '..', 'WebTorrent.icns')
+ icon: path.join(__dirname, '..', 'static', 'WebTorrent.icns')
}
var win32 = {
@@ -100,7 +100,7 @@ var win32 = {
},
// Application icon.
- icon: path.join(__dirname, '..', 'WebTorrent.ico')
+ icon: path.join(__dirname, '..', 'static', 'WebTorrent.ico')
}
var linux = {
diff --git a/config.js b/config.js
index 39ac4c2a..311e0e90 100644
--- a/config.js
+++ b/config.js
@@ -2,7 +2,7 @@ var path = require('path')
module.exports = {
APP_NAME: 'WebTorrent',
- APP_ICON: path.join(__dirname, 'WebTorrent.png'),
+ APP_ICON: path.join(__dirname, 'static', 'WebTorrent.png'),
INDEX: 'file://' + path.join(__dirname, 'renderer', 'index.html'),
SOUND_ADD: 'file://' + path.join(__dirname, 'static', 'sound', 'add.wav'),
SOUND_DELETE: 'file://' + path.join(__dirname, 'static', 'sound', 'delete.wav'),
diff --git a/WebTorrent.icns b/static/WebTorrent.icns
similarity index 100%
rename from WebTorrent.icns
rename to static/WebTorrent.icns
diff --git a/WebTorrent.ico b/static/WebTorrent.ico
similarity index 100%
rename from WebTorrent.ico
rename to static/WebTorrent.ico
diff --git a/WebTorrent.png b/static/WebTorrent.png
similarity index 100%
rename from WebTorrent.png
rename to static/WebTorrent.png