diff --git a/bottles/detail.py b/bottles/detail.py
index bd4e8d6821..aa7aa721f0 100644
--- a/bottles/detail.py
+++ b/bottles/detail.py
@@ -75,12 +75,12 @@ def __init__(self, parent):
self.grid_1.add(self.button_drive_c)
# Winecfg
- self.button_wine_cfg = Gtk.Button.new_from_icon_name("wine-winecfg", Gtk.IconSize.DIALOG)
+ self.button_wine_cfg = Gtk.Button.new_from_icon_name("bottles_wine-winecfg", Gtk.IconSize.DIALOG)
self.button_wine_cfg.connect("clicked", self.on_button_wine_cfg_clicked)
self.grid_1.add(self.button_wine_cfg)
# Winetricks
- self.button_winetricks = Gtk.Button.new_from_icon_name("winetricks", Gtk.IconSize.DIALOG)
+ self.button_winetricks = Gtk.Button.new_from_icon_name("bottles_winetricks", Gtk.IconSize.DIALOG)
self.button_winetricks.connect("clicked", self.on_button_winetricks_clicked)
self.grid_1.add(self.button_winetricks)
@@ -149,7 +149,7 @@ def __init__(self, parent):
self.grid_5.add(self.button_regedit)
# Uninstaller
- self.button_uninstaller = Gtk.Button.new_from_icon_name("wine-uninstaller", Gtk.IconSize.DIALOG)
+ self.button_uninstaller = Gtk.Button.new_from_icon_name("bottles_wine-uninstaller", Gtk.IconSize.DIALOG)
self.button_uninstaller.connect("clicked", self.on_button_uninstaller_clicked)
self.grid_5.add(self.button_uninstaller)
diff --git a/bottles/welcome.py b/bottles/welcome.py
index 93d77c72ed..07ec923d30 100644
--- a/bottles/welcome.py
+++ b/bottles/welcome.py
@@ -50,7 +50,7 @@ def __init__(self, parent):
self.welcome = self.welcome.new(cn.App.application_name, cn.App.application_description)
# Welcome voices
- self.welcome.append("wine", _('New bottle'), _('Create a new bottle'))
+ self.welcome.append("bottles_wine", _('New bottle'), _('Create a new bottle'))
self.welcome.append("document-import", _('Import and convert'), _('Import a third-party wineprefix'))
self.welcome.append("gnome-mime-application-x-archive", _('List bottles'), _('List all bottles'))
diff --git a/data/bottles_notepad.svg b/data/bottles_notepad.svg
new file mode 100644
index 0000000000..b421c6add3
--- /dev/null
+++ b/data/bottles_notepad.svg
@@ -0,0 +1,806 @@
+
+
+
diff --git a/data/bottles_wine-uninstaller.svg b/data/bottles_wine-uninstaller.svg
new file mode 100644
index 0000000000..ef35437eed
--- /dev/null
+++ b/data/bottles_wine-uninstaller.svg
@@ -0,0 +1,713 @@
+
+
+
diff --git a/data/bottles_wine-winecfg.svg b/data/bottles_wine-winecfg.svg
new file mode 100644
index 0000000000..3039da805a
--- /dev/null
+++ b/data/bottles_wine-winecfg.svg
@@ -0,0 +1,880 @@
+
+
+
diff --git a/data/bottles_wine.svg b/data/bottles_wine.svg
new file mode 100644
index 0000000000..0e1deef27f
--- /dev/null
+++ b/data/bottles_wine.svg
@@ -0,0 +1,371 @@
+
+
+
diff --git a/data/bottles_winetricks.svg b/data/bottles_winetricks.svg
new file mode 100644
index 0000000000..1c7489ae5c
--- /dev/null
+++ b/data/bottles_winetricks.svg
@@ -0,0 +1,1123 @@
+
+
+
+
diff --git a/setup.py b/setup.py
index a2bad55359..7d4766d933 100644
--- a/setup.py
+++ b/setup.py
@@ -10,11 +10,11 @@
install_data = [(share_path+'/metainfo', ['data/com.github.mirkobrombin.bottles.appdata.xml']),
(share_path+'/applications', ['data/com.github.mirkobrombin.bottles.desktop']),
(icons_path,['data/com.github.mirkobrombin.bottles.svg']),
- (icons_path,['data/notepad.svg']),
- (icons_path,['data/wine.svg']),
- (icons_path,['data/winetricks.svg']),
- (icons_path,['data/wine-uninstaller.svg']),
- (icons_path,['data/wine-winecfg.svg']),
+ (icons_path,['data/bottles_notepad.svg']),
+ (icons_path,['data/bottles_wine.svg']),
+ (icons_path,['data/bottles_winetricks.svg']),
+ (icons_path,['data/bottles_wine-uninstaller.svg']),
+ (icons_path,['data/bottles_wine-winecfg.svg']),
(inst_path,['data/style.css']),
(inst_path,['bottles/constants.py']),
(inst_path,['bottles/create.py']),