Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
GNOME Tweaks
Commits
05600c3a
Commit
05600c3a
authored
Jul 17, 2017
by
Alberto Fanjul
Committed by
Jeremy Bicha
Jul 19, 2017
Browse files
Rename to GNOME Tweaks
https://bugzilla.gnome.org/show_bug.cgi?id=783607
parent
3c093f8e
Changes
8
Hide whitespace changes
Inline
Side-by-side
README
View file @
05600c3a
GNOME TWEAK
TOOL
GNOME TWEAK
S
================
...
...
@@ -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.
Tweak
s
is designed for GNOME Shell but can be used in other desktops.
A few features will be missing when Tweak
s
is run on a different desktop.
TODO
----
...
...
data/gnome-tweak-tool.appdata.xml.in
View file @
05600c3a
...
...
@@ -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 Tweak
s
</name>
<summary>
Tweak advanced GNOME 3 settings
</summary>
<description>
<p>
GNOME Tweak
Tool
allows adjusting advanced GNOME options.
GNOME Tweak
s
allows adjusting advanced GNOME options.
</p>
<p>
It can install and manage themes and extensions, change power settings,
...
...
data/gnome-tweak-tool.desktop.in
View file @
05600c3a
[Desktop Entry]
Name=Tweak
Tool
Name=Tweak
s
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-tweak
s
Terminal=false
Type=Application
StartupNotify=true
...
...
gnome-tweak-tool.doap
View file @
05600c3a
...
...
@@ -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 Tweak
s
</name>
<shortdesc xml:lang="en">Customize advanced GNOME 3 options</shortdesc>
<description>GNOME Tweak
Tool
allows adjusting advanced configuration
<description>GNOME Tweak
s
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>
...
...
gnome-tweak
-tool
→
gnome-tweak
s
View file @
05600c3a
File moved
gtweak/app.py
View file @
05600c3a
...
...
@@ -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 Tweak
s
"
))
Gtk
.
Application
.
__init__
(
self
,
application_id
=
"org.gnome.TweakTool"
)
self
.
win
=
None
...
...
gtweak/utils.py
View file @
05600c3a
...
...
@@ -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 Tweak
s
"
):
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 Tweak
s
"
)):
self
.
notification
=
Notify
.
Notification
.
new
(
_
(
"Configuration changes require restart"
),
_
(
"Your session needs to be restarted for settings to take effect"
),
...
...
meson.build
View file @
05600c3a
...
...
@@ -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-tweak
s
', install_dir: bindir)
install_data('gnome-tweak-tool-lid-inhibitor', install_dir: libexecdir)
subdir('gtweak')
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment