[gnome-tweak-tool] Rename to GNOME Tweaks



commit 05600c3af48c70925a2faf5663036f7eef62bff8
Author: albfan <albertofanjul gmail com>
Date:   Mon Jul 17 23:39:24 2017 +0200

    Rename to GNOME Tweaks
    
    https://bugzilla.gnome.org/show_bug.cgi?id=783607

 README                               |    6 +++---
 data/gnome-tweak-tool.appdata.xml.in |    4 ++--
 data/gnome-tweak-tool.desktop.in     |    4 ++--
 gnome-tweak-tool.doap                |    4 ++--
 gnome-tweak-tool => gnome-tweaks     |    0
 gtweak/app.py                        |    2 +-
 gtweak/utils.py                      |    4 ++--
 meson.build                          |    2 +-
 8 files changed, 13 insertions(+), 13 deletions(-)
---
diff --git a/README b/README
index 556ac60..3f24212 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-GNOME TWEAK TOOL
+GNOME TWEAKS
 ================
 
 
@@ -40,8 +40,8 @@ RUNNING
 
 SUPPORTED DESKTOPS
 ------------------
-Tweak Tool is designed for GNOME Shell but can be used in other desktops.
-A few features will be missing when Tweak Tool is run on a different desktop.
+Tweaks is designed for GNOME Shell but can be used in other desktops.
+A few features will be missing when Tweaks is run on a different desktop.
 
 TODO
 ----
diff --git a/data/gnome-tweak-tool.appdata.xml.in b/data/gnome-tweak-tool.appdata.xml.in
index 9a4634d..7e12464 100644
--- a/data/gnome-tweak-tool.appdata.xml.in
+++ b/data/gnome-tweak-tool.appdata.xml.in
@@ -3,11 +3,11 @@
   <id>gnome-tweak-tool.desktop</id>
   <metadata_license>CC0-1.0</metadata_license>
   <project_license>GPL-3.0</project_license>
-  <name>GNOME Tweak Tool</name>
+  <name>GNOME Tweaks</name>
   <summary>Tweak advanced GNOME 3 settings</summary>
   <description>
     <p>
-     GNOME Tweak Tool allows adjusting advanced GNOME options.
+     GNOME Tweaks allows adjusting advanced GNOME options.
     </p>
     <p>
     It can install and manage themes and extensions, change power settings,
diff --git a/data/gnome-tweak-tool.desktop.in b/data/gnome-tweak-tool.desktop.in
index 9dc6117..c75c0f0 100644
--- a/data/gnome-tweak-tool.desktop.in
+++ b/data/gnome-tweak-tool.desktop.in
@@ -1,9 +1,9 @@
 [Desktop Entry]
-Name=Tweak Tool
+Name=Tweaks
 Comment=Tweak advanced GNOME 3 settings
 # Translators: Do NOT translate or transliterate this text (this is an icon file name)!
 Icon=gnome-tweak-tool
-Exec=gnome-tweak-tool
+Exec=gnome-tweaks
 Terminal=false
 Type=Application
 StartupNotify=true
diff --git a/gnome-tweak-tool.doap b/gnome-tweak-tool.doap
index 3a06317..1322847 100644
--- a/gnome-tweak-tool.doap
+++ b/gnome-tweak-tool.doap
@@ -4,9 +4,9 @@
          xmlns:gnome="http://api.gnome.org/doap-extensions#";
          xmlns="http://usefulinc.com/ns/doap#";>
 
-  <name xml:lang="en">GNOME Tweak Tool</name>
+  <name xml:lang="en">GNOME Tweaks</name>
   <shortdesc xml:lang="en">Customize advanced GNOME 3 options</shortdesc>
-  <description>GNOME Tweak Tool allows adjusting advanced configuration
+  <description>GNOME Tweaks allows adjusting advanced configuration
 settings in GNOME 3. This includes things like the fonts used in user
 interface elements, alternative user interface themes, changes in window
 management behavior, GNOME Shell appearance and extension, etc.</description>
diff --git a/gnome-tweak-tool b/gnome-tweaks
similarity index 100%
rename from gnome-tweak-tool
rename to gnome-tweaks
diff --git a/gtweak/app.py b/gtweak/app.py
index 827a3b0..3731279 100644
--- a/gtweak/app.py
+++ b/gtweak/app.py
@@ -33,7 +33,7 @@ from gtweak.utils import DisableExtension
 class GnomeTweakTool(Gtk.Application):
 
     def __init__(self):
-        GLib.set_application_name(_("GNOME Tweak Tool"))
+        GLib.set_application_name(_("GNOME Tweaks"))
         Gtk.Application.__init__(self, application_id="org.gnome.TweakTool")
         self.win = None
 
diff --git a/gtweak/utils.py b/gtweak/utils.py
index e3ced10..90fcbe4 100644
--- a/gtweak/utils.py
+++ b/gtweak/utils.py
@@ -308,7 +308,7 @@ class XSettingsOverrides:
 
 class Notification:
     def __init__(self, summary, body):
-        if Notify.is_initted() or Notify.init("GNOME Tweak Tool"):
+        if Notify.is_initted() or Notify.init("GNOME Tweaks"):
             self.notification = Notify.Notification.new(
                                     summary,
                                     body,
@@ -324,7 +324,7 @@ class Notification:
 @singleton
 class LogoutNotification:
     def __init__(self):
-        if Notify.is_initted() or Notify.init(_("GNOME Tweak Tool")):
+        if Notify.is_initted() or Notify.init(_("GNOME Tweaks")):
             self.notification = Notify.Notification.new(
                                 _("Configuration changes require restart"),
                                 _("Your session needs to be restarted for settings to take effect"),
diff --git a/meson.build b/meson.build
index 964ea23..50f90ba 100644
--- a/meson.build
+++ b/meson.build
@@ -23,7 +23,7 @@ gtweakdir = join_paths(pythondir, 'gtweak')
 icondir = join_paths(datadir, 'icons', 'hicolor')
 schemadir = join_paths(datadir, 'glib-2.0', 'schemas')
 
-install_data('gnome-tweak-tool', install_dir: bindir)
+install_data('gnome-tweaks', install_dir: bindir)
 install_data('gnome-tweak-tool-lid-inhibitor', install_dir: libexecdir)
 
 subdir('gtweak')


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]