├── .eslintrc.yml ├── .github ├── ISSUE_TEMPLATE.md └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── crowdin.yml ├── data ├── 10-mko.cpupower.setcpufreq.rules ├── cpupower-preferences.glade ├── icons │ └── cpu-symbolic.svg └── mko.cpupower.policy.in ├── dist ├── deb │ ├── .gitignore │ ├── Makefile │ └── gnome-shell-extension-cpupower │ │ └── debian │ │ ├── changelog │ │ ├── control │ │ ├── copyright │ │ ├── patches │ │ ├── series │ │ └── tool-install-no-root.patch │ │ ├── rules │ │ └── source │ │ └── format └── rpm │ ├── .gitignore │ ├── Makefile │ ├── SOURCES │ └── tool-install-no-root.patch │ └── SPECS │ └── gnome-shell-extension-cpupower.spec ├── extension.js ├── img ├── header.png └── header.xcf ├── locale ├── af │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── af_ZA.po ├── ar │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── ar_SA.po ├── ca │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── ca_ES.po ├── cs │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── cs_CZ.po ├── da │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── da_DK.po ├── de │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── de_DE.po ├── el │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── el_GR.po ├── en │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── en_US.po ├── es │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── es_ES.po ├── fi │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── fi_FI.po ├── fr │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── fr_FR.po ├── he │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── he_IL.po ├── hu │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── hu_HU.po ├── it │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── it_IT.po ├── ja │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── ja_JP.po ├── ko │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── ko_KR.po ├── nl │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── nl_NL.po ├── no │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── no_NO.po ├── pl │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── pl_PL.po ├── pt │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── pt_BR.po ├── pt_PT.po ├── ro │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── ro_RO.po ├── ru │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── ru_RU.po ├── sr │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── sr@latin │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── sr_RS.po ├── sr_RS@latin.po ├── sv │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── sv_SE.po ├── template.pot ├── tr │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── tr_TR.po ├── uk │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── uk_UA.po ├── vi │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── vi_VN.po ├── zh │ └── LC_MESSAGES │ │ └── gnome-shell-extension-cpupower.mo ├── zh_CN.po └── zh_TW.po ├── metadata.json ├── prefs.js ├── schemas ├── gschemas.compiled ├── io.github.martin31821.cpupower.dbus.xml └── org.gnome.shell.extensions.cpupower.gschema.xml ├── scripts ├── release.sh └── update-translations.sh ├── src ├── barLevel2.js ├── baseindicator.js ├── config.js ├── convenience.js ├── indicator.js ├── notinstalled.js ├── preferences.js ├── prefs40 │ ├── main.js │ └── misc.js ├── profile.js ├── profilebutton.js ├── slider2.js ├── update.js └── utils.js └── tool ├── cpufreqctl └── installer.sh /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/crowdin.yml -------------------------------------------------------------------------------- /data/10-mko.cpupower.setcpufreq.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/data/10-mko.cpupower.setcpufreq.rules -------------------------------------------------------------------------------- /data/cpupower-preferences.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/data/cpupower-preferences.glade -------------------------------------------------------------------------------- /data/icons/cpu-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/data/icons/cpu-symbolic.svg -------------------------------------------------------------------------------- /data/mko.cpupower.policy.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/data/mko.cpupower.policy.in -------------------------------------------------------------------------------- /dist/deb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/dist/deb/.gitignore -------------------------------------------------------------------------------- /dist/deb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/dist/deb/Makefile -------------------------------------------------------------------------------- /dist/deb/gnome-shell-extension-cpupower/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/dist/deb/gnome-shell-extension-cpupower/debian/changelog -------------------------------------------------------------------------------- /dist/deb/gnome-shell-extension-cpupower/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/dist/deb/gnome-shell-extension-cpupower/debian/control -------------------------------------------------------------------------------- /dist/deb/gnome-shell-extension-cpupower/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/dist/deb/gnome-shell-extension-cpupower/debian/copyright -------------------------------------------------------------------------------- /dist/deb/gnome-shell-extension-cpupower/debian/patches/series: -------------------------------------------------------------------------------- 1 | tool-install-no-root.patch 2 | -------------------------------------------------------------------------------- /dist/deb/gnome-shell-extension-cpupower/debian/patches/tool-install-no-root.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/dist/deb/gnome-shell-extension-cpupower/debian/patches/tool-install-no-root.patch -------------------------------------------------------------------------------- /dist/deb/gnome-shell-extension-cpupower/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/dist/deb/gnome-shell-extension-cpupower/debian/rules -------------------------------------------------------------------------------- /dist/deb/gnome-shell-extension-cpupower/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /dist/rpm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/dist/rpm/.gitignore -------------------------------------------------------------------------------- /dist/rpm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/dist/rpm/Makefile -------------------------------------------------------------------------------- /dist/rpm/SOURCES/tool-install-no-root.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/dist/rpm/SOURCES/tool-install-no-root.patch -------------------------------------------------------------------------------- /dist/rpm/SPECS/gnome-shell-extension-cpupower.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/dist/rpm/SPECS/gnome-shell-extension-cpupower.spec -------------------------------------------------------------------------------- /extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/extension.js -------------------------------------------------------------------------------- /img/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/img/header.png -------------------------------------------------------------------------------- /img/header.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/img/header.xcf -------------------------------------------------------------------------------- /locale/af/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/af/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/af_ZA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/af_ZA.po -------------------------------------------------------------------------------- /locale/ar/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/ar/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/ar_SA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/ar_SA.po -------------------------------------------------------------------------------- /locale/ca/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/ca/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/ca_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/ca_ES.po -------------------------------------------------------------------------------- /locale/cs/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/cs/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/cs_CZ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/cs_CZ.po -------------------------------------------------------------------------------- /locale/da/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/da/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/da_DK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/da_DK.po -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/de/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/de_DE.po -------------------------------------------------------------------------------- /locale/el/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/el/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/el_GR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/el_GR.po -------------------------------------------------------------------------------- /locale/en/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/en/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/en_US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/en_US.po -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/es/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/es_ES.po -------------------------------------------------------------------------------- /locale/fi/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/fi/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/fi_FI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/fi_FI.po -------------------------------------------------------------------------------- /locale/fr/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/fr/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/fr_FR.po -------------------------------------------------------------------------------- /locale/he/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/he/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/he_IL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/he_IL.po -------------------------------------------------------------------------------- /locale/hu/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/hu/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/hu_HU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/hu_HU.po -------------------------------------------------------------------------------- /locale/it/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/it/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/it_IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/it_IT.po -------------------------------------------------------------------------------- /locale/ja/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/ja/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/ja_JP.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/ja_JP.po -------------------------------------------------------------------------------- /locale/ko/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/ko/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/ko_KR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/ko_KR.po -------------------------------------------------------------------------------- /locale/nl/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/nl/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/nl_NL.po -------------------------------------------------------------------------------- /locale/no/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/no/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/no_NO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/no_NO.po -------------------------------------------------------------------------------- /locale/pl/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/pl/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/pl_PL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/pl_PL.po -------------------------------------------------------------------------------- /locale/pt/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/pt/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/pt_BR.po -------------------------------------------------------------------------------- /locale/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/pt_PT.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/ro/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/ro_RO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/ro_RO.po -------------------------------------------------------------------------------- /locale/ru/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/ru/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/ru_RU.po -------------------------------------------------------------------------------- /locale/sr/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/sr/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/sr@latin/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/sr@latin/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/sr_RS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/sr_RS.po -------------------------------------------------------------------------------- /locale/sr_RS@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/sr_RS@latin.po -------------------------------------------------------------------------------- /locale/sv/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/sv/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/sv_SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/sv_SE.po -------------------------------------------------------------------------------- /locale/template.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/template.pot -------------------------------------------------------------------------------- /locale/tr/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/tr/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/tr_TR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/tr_TR.po -------------------------------------------------------------------------------- /locale/uk/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/uk/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/uk_UA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/uk_UA.po -------------------------------------------------------------------------------- /locale/vi/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/vi/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/vi_VN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/vi_VN.po -------------------------------------------------------------------------------- /locale/zh/LC_MESSAGES/gnome-shell-extension-cpupower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/zh/LC_MESSAGES/gnome-shell-extension-cpupower.mo -------------------------------------------------------------------------------- /locale/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/zh_CN.po -------------------------------------------------------------------------------- /locale/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/locale/zh_TW.po -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/metadata.json -------------------------------------------------------------------------------- /prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/prefs.js -------------------------------------------------------------------------------- /schemas/gschemas.compiled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/schemas/gschemas.compiled -------------------------------------------------------------------------------- /schemas/io.github.martin31821.cpupower.dbus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/schemas/io.github.martin31821.cpupower.dbus.xml -------------------------------------------------------------------------------- /schemas/org.gnome.shell.extensions.cpupower.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/schemas/org.gnome.shell.extensions.cpupower.gschema.xml -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /scripts/update-translations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/scripts/update-translations.sh -------------------------------------------------------------------------------- /src/barLevel2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/src/barLevel2.js -------------------------------------------------------------------------------- /src/baseindicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/src/baseindicator.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/src/config.js -------------------------------------------------------------------------------- /src/convenience.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/src/convenience.js -------------------------------------------------------------------------------- /src/indicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/src/indicator.js -------------------------------------------------------------------------------- /src/notinstalled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/src/notinstalled.js -------------------------------------------------------------------------------- /src/preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/src/preferences.js -------------------------------------------------------------------------------- /src/prefs40/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/src/prefs40/main.js -------------------------------------------------------------------------------- /src/prefs40/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/src/prefs40/misc.js -------------------------------------------------------------------------------- /src/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/src/profile.js -------------------------------------------------------------------------------- /src/profilebutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/src/profilebutton.js -------------------------------------------------------------------------------- /src/slider2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/src/slider2.js -------------------------------------------------------------------------------- /src/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/src/update.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/src/utils.js -------------------------------------------------------------------------------- /tool/cpufreqctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/tool/cpufreqctl -------------------------------------------------------------------------------- /tool/installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deinstapel/cpupower/HEAD/tool/installer.sh --------------------------------------------------------------------------------