Skip to content

Commit cd4f536

Browse files
committed
Add support for gnome-fallback-compiz (Bug #1250252)
1 parent 74782fc commit cd4f536

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

ubuntutweak/system/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ def get_desktop_fullname():
4343
'gnome-classic': _('GNOME Classic'),
4444
'gnome-shell': 'GNOME Shell',
4545
'gnome-fallback': _('GNOME Fallback'),
46+
'gnome-fallback-compiz': _('GNOME Fallback'),
4647
'pantheon': 'elementary OS (Luna)',
4748
'Lubutu': 'LXDE',
4849
}

ubuntutweak/tweaks/fonts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class Fonts(TweakModule):
2828
__desc__ = _('Fonts Settings')
2929
__icon__ = 'font-x-generic'
3030
__category__ = 'appearance'
31-
__desktop__ = ['ubuntu', 'gnome-fallback', 'gnome', 'ubuntu-2d', 'gnome-classic', 'gnome-shell']
31+
__desktop__ = ['ubuntu', 'gnome-fallback', 'gnome', 'ubuntu-2d', 'gnome-classic', 'gnome-shell', 'gnome-fallback-compiz']
3232

3333
utext_text_scaling = _("Text scaling factor:")
3434
utext_default_font = _("Default font:")

ubuntutweak/tweaks/icons.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ class Icons(TweakModule):
112112
__desc__ = _("Rename and toggle visibilty of desktop icons")
113113
__icon__ = 'preferences-desktop-wallpaper'
114114
__category__ = 'desktop'
115-
__desktop__ = ['ubuntu', 'ubuntu-2d', 'gnome', 'gnome-classic', 'gnome-shell', 'gnome-fallback']
115+
__desktop__ = ['ubuntu', 'ubuntu-2d', 'gnome', 'gnome-classic', 'gnome-shell', 'gnome-fallback', 'gnome-fallback-compiz']
116116

117117
utext_show_icon = _("Show desktop icons:")
118118
utext_mount_volume = _("Show mounted volumes")

ubuntutweak/tweaks/nautilus.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class Nautilus(TweakModule):
2828
__desc__ = _('Manage the Nautilus file manager')
2929
__icon__ = ['file-manager', 'nautilus']
3030
__category__ = 'system'
31-
__desktop__ = ['ubuntu', 'ubuntu-2d', 'gnome', 'gnome-classic', 'gnome-shell', 'gnome-fallback']
31+
__desktop__ = ['ubuntu', 'ubuntu-2d', 'gnome', 'gnome-classic', 'gnome-shell', 'gnome-fallback', 'gnome-fallback-compiz']
3232

3333
utext_pathbar = _('Use the location entry instead of the pathbar')
3434
utext_automount = _('Automatically mount media:')

ubuntutweak/tweaks/window.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class Window(TweakModule):
3333
__desc__ = _('Manage Window Manager settings')
3434
__icon__ = 'preferences-system-windows'
3535
__category__ = 'desktop'
36-
__desktop__ = ['ubuntu', 'ubuntu-2d', 'gnome', 'gnome-classic', 'gnome-shell', 'gnome-fallback']
36+
__desktop__ = ['ubuntu', 'ubuntu-2d', 'gnome', 'gnome-classic', 'gnome-shell', 'gnome-fallback', 'gnome-fallback-compiz']
3737
__distro__ = ['precise', 'quantal', 'raring', 'saucy']
3838

3939
left_default = 'close,minimize,maximize:'

0 commit comments

Comments
 (0)