├── .gitignore ├── AUTHORS ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── COPYING ├── README.md ├── cmake ├── FindGirCompiler.cmake ├── FindVala.cmake ├── GObjectIntrospectionMacros.cmake ├── GSettings.cmake ├── ParseArguments.cmake ├── README ├── README.Vala.rst ├── Tests.cmake ├── Translations.cmake ├── ValaPrecompile.cmake └── ValaVersion.cmake ├── config.vala.cmake ├── data ├── 99theme-patcher.cmake ├── elementary-tweaks.desktop ├── elementary-tweaks.svg └── org.pantheon.elementary-tweaks.egtk.policy.cmake ├── debian ├── README ├── changelog ├── compat ├── control ├── copyright ├── postinst ├── rules └── source │ └── format ├── dist ├── elementary-tweaks-dbg_0.3_amd64.deb ├── elementary-tweaks-dbg_1.0_amd64.deb ├── elementary-tweaks-dbg_1.0_i386.deb ├── elementary-tweaks_0.3_amd64.deb ├── elementary-tweaks_1.0_amd64.deb └── elementary-tweaks_1.0_i386.deb ├── docs ├── screenshot.png ├── scrollbar-width.png └── tweaks-theme.png ├── hen ├── icon ├── preferences-desktop-tweaks.svg ├── preferences-tweaks-anim.svg ├── preferences-tweaks-cerbere.svg ├── preferences-tweaks-shadows.svg └── preferences-tweaks-slingshot.svg ├── po ├── CMakeLists.txt ├── af.po ├── am.po ├── ar.po ├── ast.po ├── az.po ├── be.po ├── bg.po ├── bn.po ├── bs.po ├── ca.po ├── ckb.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── en_AU.po ├── en_CA.po ├── en_GB.po ├── eo.po ├── es.po ├── et.po ├── eu.po ├── fa.po ├── fi.po ├── fr.po ├── fr_CA.po ├── gl.po ├── he.po ├── hi.po ├── hr.po ├── hu.po ├── hy.po ├── id.po ├── it.po ├── ja.po ├── ka.po ├── ko.po ├── ky.po ├── lb.po ├── lo.po ├── lt.po ├── lv.po ├── ml.po ├── mr.po ├── ms.po ├── my.po ├── nb.po ├── nl.po ├── nn.po ├── pl.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── rue.po ├── si.po ├── sk.po ├── sl.po ├── sma.po ├── sq.po ├── sr.po ├── sv.po ├── sw.po ├── ta.po ├── te.po ├── th.po ├── tr.po ├── tweaks-plug.pot ├── uk.po ├── vi.po ├── zh_CN.po ├── zh_HK.po └── zh_TW.po ├── project.hen ├── schemas ├── CMakeLists.txt └── org.pantheon.elementary-tweaks.gschema.xml ├── src ├── CMakeLists.txt ├── Grids │ ├── AnimationsGrid.vala │ ├── AppearanceGrid.vala │ ├── CerbereGrid.vala │ ├── EgtkThemeGrid.vala │ ├── FilesGrid.vala │ ├── FontsGrid.vala │ ├── MiscGrid.vala │ ├── PlankGrid.vala │ ├── ShadowsGrid.vala │ ├── ShortcutsGrid.vala │ ├── SlingshotGrid.vala │ └── TerminalGrid.vala ├── Objects │ ├── ShortcutObject.vala │ └── ThemePatchingOperation.vala ├── Settings │ ├── CerbereSettings.vala │ ├── EgtkThemeSettings.vala │ ├── FilesSettings.vala │ ├── GalaSettings.vala │ ├── GnomeSettings.vala │ ├── GtkSettings.vala │ ├── KeyboardSettings.vala │ ├── PlankSettings.vala │ ├── SlingshotSettings.vala │ ├── TerminalSettings.vala │ └── XSettings.vala ├── Tweaks.vala ├── Util.vala └── Widgets │ ├── AcceleratorInputWidget.vala │ ├── ColorComboboxTweakWidget.vala │ ├── LLabel.vala │ ├── LockButtonTweakWidget.vala │ └── TweakWidget.vala ├── theme-patcher ├── CMakeLists.txt ├── EgtkThemePatcher.vala └── ThemePatcher.vala ├── tweaks.geany └── vapi └── polkit-gobject-1.vapi /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindGirCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/cmake/FindGirCompiler.cmake -------------------------------------------------------------------------------- /cmake/FindVala.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/cmake/FindVala.cmake -------------------------------------------------------------------------------- /cmake/GObjectIntrospectionMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/cmake/GObjectIntrospectionMacros.cmake -------------------------------------------------------------------------------- /cmake/GSettings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/cmake/GSettings.cmake -------------------------------------------------------------------------------- /cmake/ParseArguments.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/cmake/ParseArguments.cmake -------------------------------------------------------------------------------- /cmake/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/cmake/README -------------------------------------------------------------------------------- /cmake/README.Vala.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/cmake/README.Vala.rst -------------------------------------------------------------------------------- /cmake/Tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/cmake/Tests.cmake -------------------------------------------------------------------------------- /cmake/Translations.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/cmake/Translations.cmake -------------------------------------------------------------------------------- /cmake/ValaPrecompile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/cmake/ValaPrecompile.cmake -------------------------------------------------------------------------------- /cmake/ValaVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/cmake/ValaVersion.cmake -------------------------------------------------------------------------------- /config.vala.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/config.vala.cmake -------------------------------------------------------------------------------- /data/99theme-patcher.cmake: -------------------------------------------------------------------------------- 1 | DPkg::Post-Invoke {"@PKGDATADIR@/theme-patcher";}; 2 | -------------------------------------------------------------------------------- /data/elementary-tweaks.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/data/elementary-tweaks.desktop -------------------------------------------------------------------------------- /data/elementary-tweaks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/data/elementary-tweaks.svg -------------------------------------------------------------------------------- /data/org.pantheon.elementary-tweaks.egtk.policy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/data/org.pantheon.elementary-tweaks.egtk.policy.cmake -------------------------------------------------------------------------------- /debian/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/debian/postinst -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /dist/elementary-tweaks-dbg_0.3_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/dist/elementary-tweaks-dbg_0.3_amd64.deb -------------------------------------------------------------------------------- /dist/elementary-tweaks-dbg_1.0_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/dist/elementary-tweaks-dbg_1.0_amd64.deb -------------------------------------------------------------------------------- /dist/elementary-tweaks-dbg_1.0_i386.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/dist/elementary-tweaks-dbg_1.0_i386.deb -------------------------------------------------------------------------------- /dist/elementary-tweaks_0.3_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/dist/elementary-tweaks_0.3_amd64.deb -------------------------------------------------------------------------------- /dist/elementary-tweaks_1.0_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/dist/elementary-tweaks_1.0_amd64.deb -------------------------------------------------------------------------------- /dist/elementary-tweaks_1.0_i386.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/dist/elementary-tweaks_1.0_i386.deb -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /docs/scrollbar-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/docs/scrollbar-width.png -------------------------------------------------------------------------------- /docs/tweaks-theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/docs/tweaks-theme.png -------------------------------------------------------------------------------- /hen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/hen -------------------------------------------------------------------------------- /icon/preferences-desktop-tweaks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/icon/preferences-desktop-tweaks.svg -------------------------------------------------------------------------------- /icon/preferences-tweaks-anim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/icon/preferences-tweaks-anim.svg -------------------------------------------------------------------------------- /icon/preferences-tweaks-cerbere.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/icon/preferences-tweaks-cerbere.svg -------------------------------------------------------------------------------- /icon/preferences-tweaks-shadows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/icon/preferences-tweaks-shadows.svg -------------------------------------------------------------------------------- /icon/preferences-tweaks-slingshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/icon/preferences-tweaks-slingshot.svg -------------------------------------------------------------------------------- /po/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/CMakeLists.txt -------------------------------------------------------------------------------- /po/af.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/af.po -------------------------------------------------------------------------------- /po/am.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/am.po -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/ast.po -------------------------------------------------------------------------------- /po/az.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/az.po -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/be.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/bn.po -------------------------------------------------------------------------------- /po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/bs.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/ckb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/ckb.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en_AU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/en_AU.po -------------------------------------------------------------------------------- /po/en_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/en_CA.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/es.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/et.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/fa.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/fr_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/fr_CA.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/hy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/hy.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/id.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/ky.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/ky.po -------------------------------------------------------------------------------- /po/lb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/lb.po -------------------------------------------------------------------------------- /po/lo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/lo.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/ml.po -------------------------------------------------------------------------------- /po/mr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/mr.po -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/ms.po -------------------------------------------------------------------------------- /po/my.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/my.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/nn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/nn.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/rue.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/rue.po -------------------------------------------------------------------------------- /po/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/si.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sma.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/sma.po -------------------------------------------------------------------------------- /po/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/sq.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/sw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/sw.po -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/ta.po -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/te.po -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/th.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/tweaks-plug.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/tweaks-plug.pot -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_HK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/zh_HK.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /project.hen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/project.hen -------------------------------------------------------------------------------- /schemas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/schemas/CMakeLists.txt -------------------------------------------------------------------------------- /schemas/org.pantheon.elementary-tweaks.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/schemas/org.pantheon.elementary-tweaks.gschema.xml -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Grids/AnimationsGrid.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Grids/AnimationsGrid.vala -------------------------------------------------------------------------------- /src/Grids/AppearanceGrid.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Grids/AppearanceGrid.vala -------------------------------------------------------------------------------- /src/Grids/CerbereGrid.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Grids/CerbereGrid.vala -------------------------------------------------------------------------------- /src/Grids/EgtkThemeGrid.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Grids/EgtkThemeGrid.vala -------------------------------------------------------------------------------- /src/Grids/FilesGrid.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Grids/FilesGrid.vala -------------------------------------------------------------------------------- /src/Grids/FontsGrid.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Grids/FontsGrid.vala -------------------------------------------------------------------------------- /src/Grids/MiscGrid.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Grids/MiscGrid.vala -------------------------------------------------------------------------------- /src/Grids/PlankGrid.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Grids/PlankGrid.vala -------------------------------------------------------------------------------- /src/Grids/ShadowsGrid.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Grids/ShadowsGrid.vala -------------------------------------------------------------------------------- /src/Grids/ShortcutsGrid.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Grids/ShortcutsGrid.vala -------------------------------------------------------------------------------- /src/Grids/SlingshotGrid.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Grids/SlingshotGrid.vala -------------------------------------------------------------------------------- /src/Grids/TerminalGrid.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Grids/TerminalGrid.vala -------------------------------------------------------------------------------- /src/Objects/ShortcutObject.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Objects/ShortcutObject.vala -------------------------------------------------------------------------------- /src/Objects/ThemePatchingOperation.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Objects/ThemePatchingOperation.vala -------------------------------------------------------------------------------- /src/Settings/CerbereSettings.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Settings/CerbereSettings.vala -------------------------------------------------------------------------------- /src/Settings/EgtkThemeSettings.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Settings/EgtkThemeSettings.vala -------------------------------------------------------------------------------- /src/Settings/FilesSettings.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Settings/FilesSettings.vala -------------------------------------------------------------------------------- /src/Settings/GalaSettings.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Settings/GalaSettings.vala -------------------------------------------------------------------------------- /src/Settings/GnomeSettings.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Settings/GnomeSettings.vala -------------------------------------------------------------------------------- /src/Settings/GtkSettings.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Settings/GtkSettings.vala -------------------------------------------------------------------------------- /src/Settings/KeyboardSettings.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Settings/KeyboardSettings.vala -------------------------------------------------------------------------------- /src/Settings/PlankSettings.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Settings/PlankSettings.vala -------------------------------------------------------------------------------- /src/Settings/SlingshotSettings.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Settings/SlingshotSettings.vala -------------------------------------------------------------------------------- /src/Settings/TerminalSettings.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Settings/TerminalSettings.vala -------------------------------------------------------------------------------- /src/Settings/XSettings.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Settings/XSettings.vala -------------------------------------------------------------------------------- /src/Tweaks.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Tweaks.vala -------------------------------------------------------------------------------- /src/Util.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Util.vala -------------------------------------------------------------------------------- /src/Widgets/AcceleratorInputWidget.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Widgets/AcceleratorInputWidget.vala -------------------------------------------------------------------------------- /src/Widgets/ColorComboboxTweakWidget.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Widgets/ColorComboboxTweakWidget.vala -------------------------------------------------------------------------------- /src/Widgets/LLabel.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Widgets/LLabel.vala -------------------------------------------------------------------------------- /src/Widgets/LockButtonTweakWidget.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Widgets/LockButtonTweakWidget.vala -------------------------------------------------------------------------------- /src/Widgets/TweakWidget.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/src/Widgets/TweakWidget.vala -------------------------------------------------------------------------------- /theme-patcher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/theme-patcher/CMakeLists.txt -------------------------------------------------------------------------------- /theme-patcher/EgtkThemePatcher.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/theme-patcher/EgtkThemePatcher.vala -------------------------------------------------------------------------------- /theme-patcher/ThemePatcher.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/theme-patcher/ThemePatcher.vala -------------------------------------------------------------------------------- /tweaks.geany: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/tweaks.geany -------------------------------------------------------------------------------- /vapi/polkit-gobject-1.vapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I-hate-farms/elementary-tweaks/HEAD/vapi/polkit-gobject-1.vapi --------------------------------------------------------------------------------