2020-02-09 14:44:06 +01:00
#!/bin/bash
2021-09-19 16:50:32 +02:00
2020-03-06 10:38:12 +01:00
# auto-cpufreq-installer:
# auto-cpufreq source code based installer
2020-02-09 14:44:06 +01:00
2020-08-05 18:06:28 +02:00
SCRIPT_PATH=$(readlink -f "$0")
SCRIPT_DIR=$(dirname "${SCRIPT_PATH}")
cd "${SCRIPT_DIR}"
2021-12-07 17:43:29 +01:00
# check if lsb_release exists on the system before using it
if command -v lsb_release > /dev/null
then
distro="$(lsb_release -is)"
release="$(lsb_release -rs)"
codename="$(lsb_release -cs)"
fi
2021-09-19 16:50:32 +02:00
# functions
2020-02-09 14:44:06 +01:00
2021-09-19 16:50:32 +02:00
#separator
2021-03-14 19:23:06 +01:00
function separator {
2023-07-15 21:42:45 +02:00
local COLUMNS="`tput cols`"
2022-12-05 06:32:51 +01:00
echo -e "\n"
2023-07-15 21:42:45 +02:00
printf "%0.s─" $(seq $COLUMNS)
2022-12-05 06:32:51 +01:00
echo -e "\n"
2020-02-09 14:44:06 +01:00
}
2022-12-05 06:32:51 +01:00
2020-02-09 14:44:06 +01:00
# root check
2021-03-14 19:23:06 +01:00
function root_check {
2021-09-19 16:50:32 +02:00
if ((EUID != 0)); then
2020-02-09 14:44:06 +01:00
separator
echo -e "\nMust be run as root (i.e: 'sudo $0')."
separator
exit 1
2021-03-14 19:23:06 +01:00
fi
2020-02-09 14:44:06 +01:00
}
2022-12-05 06:32:51 +01:00
function header {
2023-07-15 21:42:45 +02:00
local COLUMNS="`tput cols`"
MID="$((COLUMNS / 2))"
2022-12-05 06:32:51 +01:00
HEADER="$1"
printf "%0.s─" $(seq $((MID-(${#HEADER}/2)- 1)))
echo -n " $HEADER "
printf "%0.s─" $(seq $((MID-(${#HEADER}/2)- 1)))
echo -e "\n"
return
}
2020-02-09 14:44:06 +01:00
# python packages install
2021-12-21 20:14:02 +01:00
function setup_venv {
venv_dir=/opt/auto-cpufreq/venv
mkdir -p "${venv_dir}"
python3 -m venv "${venv_dir}"
source "${venv_dir}/bin/activate"
2022-11-11 06:12:59 +01:00
python3 -m pip install --upgrade pip wheel
2021-12-21 20:14:02 +01:00
python3 -m pip install -r requirements.txt
2020-02-09 14:44:06 +01:00
}
# tool install
2021-03-14 19:23:06 +01:00
function install {
python3 setup.py install --record files.txt
mkdir -p /usr/local/share/auto-cpufreq/
cp -r scripts/ /usr/local/share/auto-cpufreq/
Gtk Application for auto-cpufreq (#486)
* Squashed commit of the following:
commit ec7e087b343f33af7a92b190ed666845dab60f20
Merge: 32b6e63 9912f9d
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Mon Feb 13 14:11:21 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 32b6e632830fe8a7c3a3ce601ef2ba5b254572d7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 13 14:10:34 2023 -0600
increase MenuButton size
commit 12a2cda82a5f56bfbb532c893d822341e9b2d7cb
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:33 2023 -0600
set app icon
commit d170d07e866644bcb662bf342530c497390f0303
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:15 2023 -0600
remove unused pixbuf
commit 993333fb5aad448103e24e38bc85fb04e7e4dd0c
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 22:43:56 2023 -0600
fix MenuButton icon
commit d1b8bd74caab2cf216bf40bdfc35ef3520e891c7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:32 2023 -0600
add icon
commit 13f43fa0c7d59b2405bac688119690d01a7ec019
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:10 2023 -0600
add pkexec policy and change wrapper for gui
commit 4ddbb9c6667aa97bb7cd242fb4a376e061c9b308
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 14:09:35 2023 -0600
add icon to destop entry and about dialog
commit 9912f9d80935bb51c9cb759ab95c9ba7fde15524
Author: Siddharth Kumar Jha <101443068+siddharthkumarjha@users.noreply.github.com>
Date: Sun Feb 12 12:55:14 2023 +0530
Update Readme for issue of auto-cpufreq not autostarting on AUR (#485)
* Updated Readme for issue auto-cpufreq not autostarting
Added solution to issue https://github.com/AdnanHodzic/auto-cpufreq/issues/463
* Fixed minor errors
* Fixed auto-cpufreq.serivce Typo
* Reprashed text as per suggestion
commit 4379024adab282fcdb58a7091df2a6adf833e700
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Tue Feb 7 19:06:59 2023 -0600
add removal of gui and desktop entry
commit 42693703324762418a7f810f04a3d77803afa236
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:28:44 2023 -0600
CPU stats refresh and style stuff
commit 7149db72c0bb39af57ceccb16df8e9164c77fae3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:10:29 2023 -0600
daemon detection, daemon install/removal, and layout stuff
commit f7e03c9bcc2e2578703807ceeb7a652903571b71
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 19:26:42 2023 -0600
improve AboutDialog
Please enter the commit message for your changes. Lines starting
commit cb8cfe7b3194273dea229fe550fdf66cd6af82fa
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 18:28:19 2023 -0600
add dropdown menu and (not completed) about dialog
commit ade1fed790f2ebbaae4e92ce8879ab812c9b2850
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:57:17 2023 -0600
actually fix css
commit 67c8c97bcf2f2f408431bc162c38dee5c278ed0b
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:54:47 2023 -0600
fix css
commit c65eac3472f724bed10a0f530b2a828463bbe7fe
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Sun Feb 5 09:29:19 2023 +0100
Update readme, install psutil lib for power_helper
commit bd3feae38824764155d31ccd6debc1fcf18830da
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:42:52 2023 -0600
add desktop entry for gui
commit 5426a6a443c90a9d65b858ae1951219898cba332
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:33:08 2023 -0600
add gui to install file, update required packages, and create wrapper script
commit 84124dfa605b930b3722ed852486cbe11c254092
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:24 2023 -0600
create system tray
commit 7b0d46d8ddafdeff9006a1ad10ccd99c24b9eb1e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:01 2023 -0600
small changes to layout
commit cd51ea317085ac6ea5b4918ef057ad4c19a71640
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:44:08 2023 -0600
css styling support
commit 136b449febece04c036b72b4a14ccceb422f62dd
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:14:52 2023 -0600
several improvements
commit f9f7170391e1abc1499b7d5ae93327999e013730
Merge: 242a8d0 8f343df
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 22:44:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 8f343df8b8b82846364fbc14b2fc2e5144abebaa
Merge: dadfae0 b38919f
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:54:11 2023 -0600
Merge pull request #481 from shadeyg56/master
Fix uncaught error in checking for snap
commit b38919f56b6329c81c4c96eabe9bfd27d590d16e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Fri Feb 3 14:48:01 2023 -0600
fix uncaught error in checking for snap
commit 242a8d0401d1ffd00c982aa731c04ef7ea726fee
Merge: f50b982 dadfae0
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:19:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit dadfae087f102c0f69329d5ad79e3a648c35b459
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 20:02:03 2023 +0100
Update README with new config options
commit 471611de7da97b7da8580646612d4f910311e16e
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 18:44:33 2023 +0100
Remove GNOME Power Profiles Daemon performance install
commit f574257dc475f942fa39179787acf09c567e76dd
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 18:32:04 2023 +0100
Remove install_performance flag
commit 04b878360c7dff4b0e44fc8935e9667a597806b4
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 17:52:20 2023 +0100
Snap tag 2.0-beta + governor_override improvements
commit fe21ddf24585164ed0f8cfa8f9ad7d3db627ab79
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 17:28:12 2023 +0100
Working governor override on Snap package
commit f50b9829e5438bb96ded73775668fa048fcd3951
Merge: a98225e 69ef913
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Thu Feb 2 18:19:10 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit a98225e7280802c2fb09a9a52a40f7e55b26b3b1
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:18:43 2023 -0600
Revert "basic GUI"
This reverts commit d2610c921b7209fde7d7be13f187510631cc33b3.
commit 9606472fdbbff6dd551cd291b37349df17098d2e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:13:41 2023 -0600
basic gui
commit d2610c921b7209fde7d7be13f187510631cc33b3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 17:47:55 2023 -0600
basic GUI
commit bdbe12018b380ed70f100729c9ea3732ba24f572
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 15:21:42 2023 -0600
rename folder
commit 31095c472e4af734a3a601f804787de89ad47964
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Wed Jan 25 23:39:52 2023 -0600
add tray
* Squashed commit of the following:
commit e2eaffc32b382f67f97d2e25858b5b5a4abffeae
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 20 23:08:57 2023 -0600
move text to be inline with menu
commit e1dae9d9de25f13c51dd983f5b4b0fbdf1bf0349
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:50:26 2023 -0600
move distro info to top of system stats box
commit 959405bedc52dce14f5fd70d2fcd5fbee57e59a5
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:49:15 2023 -0600
fix app name on GNOME
commit 346093dfce6ce0bfa1954ed3bb6f5364250d05b7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:01:03 2023 -0600
fix snap dependencies
commit ec7e087b343f33af7a92b190ed666845dab60f20
Merge: 32b6e63 9912f9d
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Mon Feb 13 14:11:21 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 32b6e632830fe8a7c3a3ce601ef2ba5b254572d7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 13 14:10:34 2023 -0600
increase MenuButton size
commit 12a2cda82a5f56bfbb532c893d822341e9b2d7cb
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:33 2023 -0600
set app icon
commit d170d07e866644bcb662bf342530c497390f0303
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:15 2023 -0600
remove unused pixbuf
commit 993333fb5aad448103e24e38bc85fb04e7e4dd0c
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 22:43:56 2023 -0600
fix MenuButton icon
commit d1b8bd74caab2cf216bf40bdfc35ef3520e891c7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:32 2023 -0600
add icon
commit 13f43fa0c7d59b2405bac688119690d01a7ec019
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:10 2023 -0600
add pkexec policy and change wrapper for gui
commit 4ddbb9c6667aa97bb7cd242fb4a376e061c9b308
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 14:09:35 2023 -0600
add icon to destop entry and about dialog
commit 4379024adab282fcdb58a7091df2a6adf833e700
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Tue Feb 7 19:06:59 2023 -0600
add removal of gui and desktop entry
commit 42693703324762418a7f810f04a3d77803afa236
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:28:44 2023 -0600
CPU stats refresh and style stuff
commit 7149db72c0bb39af57ceccb16df8e9164c77fae3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:10:29 2023 -0600
daemon detection, daemon install/removal, and layout stuff
commit f7e03c9bcc2e2578703807ceeb7a652903571b71
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 19:26:42 2023 -0600
improve AboutDialog
Please enter the commit message for your changes. Lines starting
commit cb8cfe7b3194273dea229fe550fdf66cd6af82fa
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 18:28:19 2023 -0600
add dropdown menu and (not completed) about dialog
commit ade1fed790f2ebbaae4e92ce8879ab812c9b2850
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:57:17 2023 -0600
actually fix css
commit 67c8c97bcf2f2f408431bc162c38dee5c278ed0b
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:54:47 2023 -0600
fix css
commit bd3feae38824764155d31ccd6debc1fcf18830da
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:42:52 2023 -0600
add desktop entry for gui
commit 5426a6a443c90a9d65b858ae1951219898cba332
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:33:08 2023 -0600
add gui to install file, update required packages, and create wrapper script
commit 84124dfa605b930b3722ed852486cbe11c254092
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:24 2023 -0600
create system tray
commit 7b0d46d8ddafdeff9006a1ad10ccd99c24b9eb1e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:01 2023 -0600
small changes to layout
commit cd51ea317085ac6ea5b4918ef057ad4c19a71640
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:44:08 2023 -0600
css styling support
commit 136b449febece04c036b72b4a14ccceb422f62dd
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:14:52 2023 -0600
several improvements
commit f9f7170391e1abc1499b7d5ae93327999e013730
Merge: 242a8d0 8f343df
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 22:44:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 242a8d0401d1ffd00c982aa731c04ef7ea726fee
Merge: f50b982 dadfae0
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:19:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit f50b9829e5438bb96ded73775668fa048fcd3951
Merge: a98225e 69ef913
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Thu Feb 2 18:19:10 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit a98225e7280802c2fb09a9a52a40f7e55b26b3b1
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:18:43 2023 -0600
Revert "basic GUI"
This reverts commit d2610c921b7209fde7d7be13f187510631cc33b3.
commit 9606472fdbbff6dd551cd291b37349df17098d2e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:13:41 2023 -0600
basic gui
commit d2610c921b7209fde7d7be13f187510631cc33b3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 17:47:55 2023 -0600
basic GUI
commit bdbe12018b380ed70f100729c9ea3732ba24f572
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 15:21:42 2023 -0600
rename folder
commit 31095c472e4af734a3a601f804787de89ad47964
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Wed Jan 25 23:39:52 2023 -0600
add tray
* fix undefined var
* app no longer needs root to start, only asks when needed
* fix wmclass
* create file in /bin for gui
* fix bug with radio buttons and pkexec
* snap: update snap to package GTK gui
* update setup.py
* requirements.txt: fix conflict
* Merge master into dev
* gui: fix pkexec on launch
2023-08-15 17:58:16 +02:00
cp -r images/ /usr/local/share/auto-cpufreq/
cp images/icon.png /usr/share/pixmaps/auto-cpufreq.png
cp scripts/org.auto-cpufreq.pkexec.policy /usr/share/polkit-1/actions
2021-03-14 19:23:06 +01:00
2021-12-21 20:14:02 +01:00
# this is necessary since we need this script before we can run auto-cpufreq itself
cp scripts/auto-cpufreq-venv-wrapper /usr/local/bin/auto-cpufreq
Gtk Application for auto-cpufreq (#486)
* Squashed commit of the following:
commit ec7e087b343f33af7a92b190ed666845dab60f20
Merge: 32b6e63 9912f9d
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Mon Feb 13 14:11:21 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 32b6e632830fe8a7c3a3ce601ef2ba5b254572d7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 13 14:10:34 2023 -0600
increase MenuButton size
commit 12a2cda82a5f56bfbb532c893d822341e9b2d7cb
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:33 2023 -0600
set app icon
commit d170d07e866644bcb662bf342530c497390f0303
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:15 2023 -0600
remove unused pixbuf
commit 993333fb5aad448103e24e38bc85fb04e7e4dd0c
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 22:43:56 2023 -0600
fix MenuButton icon
commit d1b8bd74caab2cf216bf40bdfc35ef3520e891c7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:32 2023 -0600
add icon
commit 13f43fa0c7d59b2405bac688119690d01a7ec019
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:10 2023 -0600
add pkexec policy and change wrapper for gui
commit 4ddbb9c6667aa97bb7cd242fb4a376e061c9b308
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 14:09:35 2023 -0600
add icon to destop entry and about dialog
commit 9912f9d80935bb51c9cb759ab95c9ba7fde15524
Author: Siddharth Kumar Jha <101443068+siddharthkumarjha@users.noreply.github.com>
Date: Sun Feb 12 12:55:14 2023 +0530
Update Readme for issue of auto-cpufreq not autostarting on AUR (#485)
* Updated Readme for issue auto-cpufreq not autostarting
Added solution to issue https://github.com/AdnanHodzic/auto-cpufreq/issues/463
* Fixed minor errors
* Fixed auto-cpufreq.serivce Typo
* Reprashed text as per suggestion
commit 4379024adab282fcdb58a7091df2a6adf833e700
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Tue Feb 7 19:06:59 2023 -0600
add removal of gui and desktop entry
commit 42693703324762418a7f810f04a3d77803afa236
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:28:44 2023 -0600
CPU stats refresh and style stuff
commit 7149db72c0bb39af57ceccb16df8e9164c77fae3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:10:29 2023 -0600
daemon detection, daemon install/removal, and layout stuff
commit f7e03c9bcc2e2578703807ceeb7a652903571b71
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 19:26:42 2023 -0600
improve AboutDialog
Please enter the commit message for your changes. Lines starting
commit cb8cfe7b3194273dea229fe550fdf66cd6af82fa
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 18:28:19 2023 -0600
add dropdown menu and (not completed) about dialog
commit ade1fed790f2ebbaae4e92ce8879ab812c9b2850
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:57:17 2023 -0600
actually fix css
commit 67c8c97bcf2f2f408431bc162c38dee5c278ed0b
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:54:47 2023 -0600
fix css
commit c65eac3472f724bed10a0f530b2a828463bbe7fe
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Sun Feb 5 09:29:19 2023 +0100
Update readme, install psutil lib for power_helper
commit bd3feae38824764155d31ccd6debc1fcf18830da
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:42:52 2023 -0600
add desktop entry for gui
commit 5426a6a443c90a9d65b858ae1951219898cba332
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:33:08 2023 -0600
add gui to install file, update required packages, and create wrapper script
commit 84124dfa605b930b3722ed852486cbe11c254092
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:24 2023 -0600
create system tray
commit 7b0d46d8ddafdeff9006a1ad10ccd99c24b9eb1e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:01 2023 -0600
small changes to layout
commit cd51ea317085ac6ea5b4918ef057ad4c19a71640
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:44:08 2023 -0600
css styling support
commit 136b449febece04c036b72b4a14ccceb422f62dd
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:14:52 2023 -0600
several improvements
commit f9f7170391e1abc1499b7d5ae93327999e013730
Merge: 242a8d0 8f343df
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 22:44:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 8f343df8b8b82846364fbc14b2fc2e5144abebaa
Merge: dadfae0 b38919f
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:54:11 2023 -0600
Merge pull request #481 from shadeyg56/master
Fix uncaught error in checking for snap
commit b38919f56b6329c81c4c96eabe9bfd27d590d16e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Fri Feb 3 14:48:01 2023 -0600
fix uncaught error in checking for snap
commit 242a8d0401d1ffd00c982aa731c04ef7ea726fee
Merge: f50b982 dadfae0
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:19:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit dadfae087f102c0f69329d5ad79e3a648c35b459
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 20:02:03 2023 +0100
Update README with new config options
commit 471611de7da97b7da8580646612d4f910311e16e
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 18:44:33 2023 +0100
Remove GNOME Power Profiles Daemon performance install
commit f574257dc475f942fa39179787acf09c567e76dd
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 18:32:04 2023 +0100
Remove install_performance flag
commit 04b878360c7dff4b0e44fc8935e9667a597806b4
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 17:52:20 2023 +0100
Snap tag 2.0-beta + governor_override improvements
commit fe21ddf24585164ed0f8cfa8f9ad7d3db627ab79
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 17:28:12 2023 +0100
Working governor override on Snap package
commit f50b9829e5438bb96ded73775668fa048fcd3951
Merge: a98225e 69ef913
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Thu Feb 2 18:19:10 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit a98225e7280802c2fb09a9a52a40f7e55b26b3b1
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:18:43 2023 -0600
Revert "basic GUI"
This reverts commit d2610c921b7209fde7d7be13f187510631cc33b3.
commit 9606472fdbbff6dd551cd291b37349df17098d2e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:13:41 2023 -0600
basic gui
commit d2610c921b7209fde7d7be13f187510631cc33b3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 17:47:55 2023 -0600
basic GUI
commit bdbe12018b380ed70f100729c9ea3732ba24f572
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 15:21:42 2023 -0600
rename folder
commit 31095c472e4af734a3a601f804787de89ad47964
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Wed Jan 25 23:39:52 2023 -0600
add tray
* Squashed commit of the following:
commit e2eaffc32b382f67f97d2e25858b5b5a4abffeae
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 20 23:08:57 2023 -0600
move text to be inline with menu
commit e1dae9d9de25f13c51dd983f5b4b0fbdf1bf0349
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:50:26 2023 -0600
move distro info to top of system stats box
commit 959405bedc52dce14f5fd70d2fcd5fbee57e59a5
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:49:15 2023 -0600
fix app name on GNOME
commit 346093dfce6ce0bfa1954ed3bb6f5364250d05b7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:01:03 2023 -0600
fix snap dependencies
commit ec7e087b343f33af7a92b190ed666845dab60f20
Merge: 32b6e63 9912f9d
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Mon Feb 13 14:11:21 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 32b6e632830fe8a7c3a3ce601ef2ba5b254572d7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 13 14:10:34 2023 -0600
increase MenuButton size
commit 12a2cda82a5f56bfbb532c893d822341e9b2d7cb
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:33 2023 -0600
set app icon
commit d170d07e866644bcb662bf342530c497390f0303
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:15 2023 -0600
remove unused pixbuf
commit 993333fb5aad448103e24e38bc85fb04e7e4dd0c
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 22:43:56 2023 -0600
fix MenuButton icon
commit d1b8bd74caab2cf216bf40bdfc35ef3520e891c7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:32 2023 -0600
add icon
commit 13f43fa0c7d59b2405bac688119690d01a7ec019
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:10 2023 -0600
add pkexec policy and change wrapper for gui
commit 4ddbb9c6667aa97bb7cd242fb4a376e061c9b308
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 14:09:35 2023 -0600
add icon to destop entry and about dialog
commit 4379024adab282fcdb58a7091df2a6adf833e700
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Tue Feb 7 19:06:59 2023 -0600
add removal of gui and desktop entry
commit 42693703324762418a7f810f04a3d77803afa236
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:28:44 2023 -0600
CPU stats refresh and style stuff
commit 7149db72c0bb39af57ceccb16df8e9164c77fae3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:10:29 2023 -0600
daemon detection, daemon install/removal, and layout stuff
commit f7e03c9bcc2e2578703807ceeb7a652903571b71
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 19:26:42 2023 -0600
improve AboutDialog
Please enter the commit message for your changes. Lines starting
commit cb8cfe7b3194273dea229fe550fdf66cd6af82fa
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 18:28:19 2023 -0600
add dropdown menu and (not completed) about dialog
commit ade1fed790f2ebbaae4e92ce8879ab812c9b2850
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:57:17 2023 -0600
actually fix css
commit 67c8c97bcf2f2f408431bc162c38dee5c278ed0b
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:54:47 2023 -0600
fix css
commit bd3feae38824764155d31ccd6debc1fcf18830da
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:42:52 2023 -0600
add desktop entry for gui
commit 5426a6a443c90a9d65b858ae1951219898cba332
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:33:08 2023 -0600
add gui to install file, update required packages, and create wrapper script
commit 84124dfa605b930b3722ed852486cbe11c254092
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:24 2023 -0600
create system tray
commit 7b0d46d8ddafdeff9006a1ad10ccd99c24b9eb1e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:01 2023 -0600
small changes to layout
commit cd51ea317085ac6ea5b4918ef057ad4c19a71640
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:44:08 2023 -0600
css styling support
commit 136b449febece04c036b72b4a14ccceb422f62dd
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:14:52 2023 -0600
several improvements
commit f9f7170391e1abc1499b7d5ae93327999e013730
Merge: 242a8d0 8f343df
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 22:44:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 242a8d0401d1ffd00c982aa731c04ef7ea726fee
Merge: f50b982 dadfae0
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:19:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit f50b9829e5438bb96ded73775668fa048fcd3951
Merge: a98225e 69ef913
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Thu Feb 2 18:19:10 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit a98225e7280802c2fb09a9a52a40f7e55b26b3b1
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:18:43 2023 -0600
Revert "basic GUI"
This reverts commit d2610c921b7209fde7d7be13f187510631cc33b3.
commit 9606472fdbbff6dd551cd291b37349df17098d2e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:13:41 2023 -0600
basic gui
commit d2610c921b7209fde7d7be13f187510631cc33b3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 17:47:55 2023 -0600
basic GUI
commit bdbe12018b380ed70f100729c9ea3732ba24f572
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 15:21:42 2023 -0600
rename folder
commit 31095c472e4af734a3a601f804787de89ad47964
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Wed Jan 25 23:39:52 2023 -0600
add tray
* fix undefined var
* app no longer needs root to start, only asks when needed
* fix wmclass
* create file in /bin for gui
* fix bug with radio buttons and pkexec
* snap: update snap to package GTK gui
* update setup.py
* requirements.txt: fix conflict
* Merge master into dev
* gui: fix pkexec on launch
2023-08-15 17:58:16 +02:00
cp scripts/start_app /usr/local/bin/auto-cpufreq-gtk
2021-12-21 20:14:02 +01:00
chmod a+x /usr/local/bin/auto-cpufreq
Gtk Application for auto-cpufreq (#486)
* Squashed commit of the following:
commit ec7e087b343f33af7a92b190ed666845dab60f20
Merge: 32b6e63 9912f9d
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Mon Feb 13 14:11:21 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 32b6e632830fe8a7c3a3ce601ef2ba5b254572d7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 13 14:10:34 2023 -0600
increase MenuButton size
commit 12a2cda82a5f56bfbb532c893d822341e9b2d7cb
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:33 2023 -0600
set app icon
commit d170d07e866644bcb662bf342530c497390f0303
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:15 2023 -0600
remove unused pixbuf
commit 993333fb5aad448103e24e38bc85fb04e7e4dd0c
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 22:43:56 2023 -0600
fix MenuButton icon
commit d1b8bd74caab2cf216bf40bdfc35ef3520e891c7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:32 2023 -0600
add icon
commit 13f43fa0c7d59b2405bac688119690d01a7ec019
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:10 2023 -0600
add pkexec policy and change wrapper for gui
commit 4ddbb9c6667aa97bb7cd242fb4a376e061c9b308
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 14:09:35 2023 -0600
add icon to destop entry and about dialog
commit 9912f9d80935bb51c9cb759ab95c9ba7fde15524
Author: Siddharth Kumar Jha <101443068+siddharthkumarjha@users.noreply.github.com>
Date: Sun Feb 12 12:55:14 2023 +0530
Update Readme for issue of auto-cpufreq not autostarting on AUR (#485)
* Updated Readme for issue auto-cpufreq not autostarting
Added solution to issue https://github.com/AdnanHodzic/auto-cpufreq/issues/463
* Fixed minor errors
* Fixed auto-cpufreq.serivce Typo
* Reprashed text as per suggestion
commit 4379024adab282fcdb58a7091df2a6adf833e700
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Tue Feb 7 19:06:59 2023 -0600
add removal of gui and desktop entry
commit 42693703324762418a7f810f04a3d77803afa236
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:28:44 2023 -0600
CPU stats refresh and style stuff
commit 7149db72c0bb39af57ceccb16df8e9164c77fae3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:10:29 2023 -0600
daemon detection, daemon install/removal, and layout stuff
commit f7e03c9bcc2e2578703807ceeb7a652903571b71
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 19:26:42 2023 -0600
improve AboutDialog
Please enter the commit message for your changes. Lines starting
commit cb8cfe7b3194273dea229fe550fdf66cd6af82fa
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 18:28:19 2023 -0600
add dropdown menu and (not completed) about dialog
commit ade1fed790f2ebbaae4e92ce8879ab812c9b2850
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:57:17 2023 -0600
actually fix css
commit 67c8c97bcf2f2f408431bc162c38dee5c278ed0b
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:54:47 2023 -0600
fix css
commit c65eac3472f724bed10a0f530b2a828463bbe7fe
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Sun Feb 5 09:29:19 2023 +0100
Update readme, install psutil lib for power_helper
commit bd3feae38824764155d31ccd6debc1fcf18830da
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:42:52 2023 -0600
add desktop entry for gui
commit 5426a6a443c90a9d65b858ae1951219898cba332
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:33:08 2023 -0600
add gui to install file, update required packages, and create wrapper script
commit 84124dfa605b930b3722ed852486cbe11c254092
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:24 2023 -0600
create system tray
commit 7b0d46d8ddafdeff9006a1ad10ccd99c24b9eb1e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:01 2023 -0600
small changes to layout
commit cd51ea317085ac6ea5b4918ef057ad4c19a71640
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:44:08 2023 -0600
css styling support
commit 136b449febece04c036b72b4a14ccceb422f62dd
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:14:52 2023 -0600
several improvements
commit f9f7170391e1abc1499b7d5ae93327999e013730
Merge: 242a8d0 8f343df
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 22:44:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 8f343df8b8b82846364fbc14b2fc2e5144abebaa
Merge: dadfae0 b38919f
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:54:11 2023 -0600
Merge pull request #481 from shadeyg56/master
Fix uncaught error in checking for snap
commit b38919f56b6329c81c4c96eabe9bfd27d590d16e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Fri Feb 3 14:48:01 2023 -0600
fix uncaught error in checking for snap
commit 242a8d0401d1ffd00c982aa731c04ef7ea726fee
Merge: f50b982 dadfae0
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:19:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit dadfae087f102c0f69329d5ad79e3a648c35b459
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 20:02:03 2023 +0100
Update README with new config options
commit 471611de7da97b7da8580646612d4f910311e16e
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 18:44:33 2023 +0100
Remove GNOME Power Profiles Daemon performance install
commit f574257dc475f942fa39179787acf09c567e76dd
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 18:32:04 2023 +0100
Remove install_performance flag
commit 04b878360c7dff4b0e44fc8935e9667a597806b4
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 17:52:20 2023 +0100
Snap tag 2.0-beta + governor_override improvements
commit fe21ddf24585164ed0f8cfa8f9ad7d3db627ab79
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 17:28:12 2023 +0100
Working governor override on Snap package
commit f50b9829e5438bb96ded73775668fa048fcd3951
Merge: a98225e 69ef913
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Thu Feb 2 18:19:10 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit a98225e7280802c2fb09a9a52a40f7e55b26b3b1
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:18:43 2023 -0600
Revert "basic GUI"
This reverts commit d2610c921b7209fde7d7be13f187510631cc33b3.
commit 9606472fdbbff6dd551cd291b37349df17098d2e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:13:41 2023 -0600
basic gui
commit d2610c921b7209fde7d7be13f187510631cc33b3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 17:47:55 2023 -0600
basic GUI
commit bdbe12018b380ed70f100729c9ea3732ba24f572
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 15:21:42 2023 -0600
rename folder
commit 31095c472e4af734a3a601f804787de89ad47964
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Wed Jan 25 23:39:52 2023 -0600
add tray
* Squashed commit of the following:
commit e2eaffc32b382f67f97d2e25858b5b5a4abffeae
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 20 23:08:57 2023 -0600
move text to be inline with menu
commit e1dae9d9de25f13c51dd983f5b4b0fbdf1bf0349
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:50:26 2023 -0600
move distro info to top of system stats box
commit 959405bedc52dce14f5fd70d2fcd5fbee57e59a5
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:49:15 2023 -0600
fix app name on GNOME
commit 346093dfce6ce0bfa1954ed3bb6f5364250d05b7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:01:03 2023 -0600
fix snap dependencies
commit ec7e087b343f33af7a92b190ed666845dab60f20
Merge: 32b6e63 9912f9d
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Mon Feb 13 14:11:21 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 32b6e632830fe8a7c3a3ce601ef2ba5b254572d7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 13 14:10:34 2023 -0600
increase MenuButton size
commit 12a2cda82a5f56bfbb532c893d822341e9b2d7cb
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:33 2023 -0600
set app icon
commit d170d07e866644bcb662bf342530c497390f0303
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:15 2023 -0600
remove unused pixbuf
commit 993333fb5aad448103e24e38bc85fb04e7e4dd0c
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 22:43:56 2023 -0600
fix MenuButton icon
commit d1b8bd74caab2cf216bf40bdfc35ef3520e891c7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:32 2023 -0600
add icon
commit 13f43fa0c7d59b2405bac688119690d01a7ec019
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:10 2023 -0600
add pkexec policy and change wrapper for gui
commit 4ddbb9c6667aa97bb7cd242fb4a376e061c9b308
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 14:09:35 2023 -0600
add icon to destop entry and about dialog
commit 4379024adab282fcdb58a7091df2a6adf833e700
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Tue Feb 7 19:06:59 2023 -0600
add removal of gui and desktop entry
commit 42693703324762418a7f810f04a3d77803afa236
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:28:44 2023 -0600
CPU stats refresh and style stuff
commit 7149db72c0bb39af57ceccb16df8e9164c77fae3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:10:29 2023 -0600
daemon detection, daemon install/removal, and layout stuff
commit f7e03c9bcc2e2578703807ceeb7a652903571b71
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 19:26:42 2023 -0600
improve AboutDialog
Please enter the commit message for your changes. Lines starting
commit cb8cfe7b3194273dea229fe550fdf66cd6af82fa
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 18:28:19 2023 -0600
add dropdown menu and (not completed) about dialog
commit ade1fed790f2ebbaae4e92ce8879ab812c9b2850
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:57:17 2023 -0600
actually fix css
commit 67c8c97bcf2f2f408431bc162c38dee5c278ed0b
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:54:47 2023 -0600
fix css
commit bd3feae38824764155d31ccd6debc1fcf18830da
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:42:52 2023 -0600
add desktop entry for gui
commit 5426a6a443c90a9d65b858ae1951219898cba332
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:33:08 2023 -0600
add gui to install file, update required packages, and create wrapper script
commit 84124dfa605b930b3722ed852486cbe11c254092
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:24 2023 -0600
create system tray
commit 7b0d46d8ddafdeff9006a1ad10ccd99c24b9eb1e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:01 2023 -0600
small changes to layout
commit cd51ea317085ac6ea5b4918ef057ad4c19a71640
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:44:08 2023 -0600
css styling support
commit 136b449febece04c036b72b4a14ccceb422f62dd
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:14:52 2023 -0600
several improvements
commit f9f7170391e1abc1499b7d5ae93327999e013730
Merge: 242a8d0 8f343df
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 22:44:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 242a8d0401d1ffd00c982aa731c04ef7ea726fee
Merge: f50b982 dadfae0
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:19:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit f50b9829e5438bb96ded73775668fa048fcd3951
Merge: a98225e 69ef913
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Thu Feb 2 18:19:10 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit a98225e7280802c2fb09a9a52a40f7e55b26b3b1
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:18:43 2023 -0600
Revert "basic GUI"
This reverts commit d2610c921b7209fde7d7be13f187510631cc33b3.
commit 9606472fdbbff6dd551cd291b37349df17098d2e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:13:41 2023 -0600
basic gui
commit d2610c921b7209fde7d7be13f187510631cc33b3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 17:47:55 2023 -0600
basic GUI
commit bdbe12018b380ed70f100729c9ea3732ba24f572
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 15:21:42 2023 -0600
rename folder
commit 31095c472e4af734a3a601f804787de89ad47964
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Wed Jan 25 23:39:52 2023 -0600
add tray
* fix undefined var
* app no longer needs root to start, only asks when needed
* fix wmclass
* create file in /bin for gui
* fix bug with radio buttons and pkexec
* snap: update snap to package GTK gui
* update setup.py
* requirements.txt: fix conflict
* Merge master into dev
* gui: fix pkexec on launch
2023-08-15 17:58:16 +02:00
chmod a+x /usr/local/bin/auto-cpufreq-gtk
desktop-file-install --dir=/usr/share/applications scripts/auto-cpufreq-gtk.desktop
update-desktop-database /usr/share/applications
2021-09-19 16:50:32 +02:00
}
# First argument is the distro
function detected_distro() {
echo -e "\nDetected $1 distribution"
separator
echo -e "\nSetting up Python environment\n"
}
# merged functions pip - install - complete_msg, since it repeats
function completed () {
echo -e "\nInstalling necessary Python packages\n"
2021-12-21 20:14:02 +01:00
setup_venv
2021-09-19 16:50:32 +02:00
separator
echo -e "\ninstalling auto-cpufreq tool\n"
install
2021-11-04 21:23:41 +01:00
}
function complete_msg() {
2021-09-19 16:50:32 +02:00
separator
2022-12-05 06:32:51 +01:00
cat <<- _EOF_
auto-cpufreq tool successfully installed.
For list of options, run:
auto-cpufreq --help"
_EOF_
2021-09-19 16:50:32 +02:00
separator
}
function manual_install {
2022-12-05 06:32:51 +01:00
cat <<- _EOF_
Didn't detect Debian or RedHat based distro.
To complete installation, you need to:
2023-09-06 07:27:16 +02:00
Install: python3, pip3, python3-setuptools, gobject-introspection, cairo (or cairo-devel), gcc, and gtk3
2022-12-05 06:32:51 +01:00
Install necessary Python packages:
2023-09-06 07:27:16 +02:00
pip3 install psutil click distro power requests PyGObject
2022-12-05 06:32:51 +01:00
Run following sequence of lines:
-----
python3 setup.py install --record files.txt
mkdir -p /usr/local/share/auto-cpufreq/
cp -r scripts/ /usr/local/share/auto-cpufreq/
-----
After which tool is installed, for full list of options run:
auto-cpufreq
_EOF_
2021-09-19 16:50:32 +02:00
separator
2022-12-05 06:32:51 +01:00
cat <<- _EOF_
Consider creating a feature request to add support for your distro:
https://github.com/AdnanHodzic/auto-cpufreq/issues/new
Make sure to include following information:
Distribution: $distro
Release: $release
Codename: $codename
_EOF_
2021-09-19 16:50:32 +02:00
separator
2020-02-09 14:44:06 +01:00
}
2021-03-14 19:23:06 +01:00
function tool_install {
2021-09-19 16:50:32 +02:00
separator
if [ -f /etc/debian_version ]; then
detected_distro "Debian based"
2023-09-06 07:27:16 +02:00
apt install python3-dev python3-pip python3-venv python3-setuptools dmidecode libgirepository1.0-dev libcairo2-dev libgtk-3 gcc -y
2021-09-19 16:50:32 +02:00
completed
2021-11-04 21:23:41 +01:00
complete_msg
2021-09-19 16:50:32 +02:00
elif [ -f /etc/redhat-release ]; then
detected_distro "RedHat based"
if [ -f /etc/centos-release ]; then
2023-09-06 07:27:16 +02:00
yum install platform-python-devel dmidecode gcc cairo-devel gobject-introspection-devel cairo-gobject-devel gtk3-devel
2021-09-19 16:50:32 +02:00
else
2023-09-06 07:27:16 +02:00
yum install python-devel dmidecode gcc cairo-devel gobject-introspection-devel cairo-gobject-devel gtk3-devel
2021-09-19 16:50:32 +02:00
fi
completed
2021-11-04 21:23:41 +01:00
complete_msg
2021-09-19 16:50:32 +02:00
elif [ -f /etc/solus-release ]; then
detected_distro "Solus"
2023-09-06 07:27:16 +02:00
eopkg install pip python3 python3-devel dmidecode gobject-introspection-devel libcairo-devel gcc libgtk-3
2021-09-19 16:50:32 +02:00
eopkg install -c system.devel
completed
2021-11-04 21:23:41 +01:00
complete_msg
2021-09-19 16:50:32 +02:00
elif [ -f /etc/os-release ];then
eval "$(cat /etc/os-release)"
separator
case $ID in
opensuse-leap)
detected_distro "OpenSUSE"
2023-09-06 07:27:16 +02:00
zypper install -y python3 python3-pip python3-setuptools python3-devel gcc dmidecode gobject-introspection-devel python3-cairo-devel gtk3 gtk3-devel
2021-11-04 21:23:41 +01:00
completed
2021-09-19 16:50:32 +02:00
;;
2023-09-06 07:27:16 +02:00
opensuse-tumbleweed)
2021-09-19 16:50:32 +02:00
detected_distro "OpenSUSE"
2022-07-31 08:14:27 +02:00
echo -e "\nDetected an OpenSUSE distribution\n\nSetting up Python environment\n"
2023-09-06 07:27:16 +02:00
zypper install -y python38 python3-pip python3-setuptools python3-devel gcc dmidecode gobject-introspection-devel python3-cairo-devel gtk3 gtk3-devel
2021-11-04 21:23:41 +01:00
completed
2021-09-19 16:50:32 +02:00
;;
arch|manjaro|endeavouros|garuda|artix)
detected_distro "Arch Linux based"
2023-09-06 07:27:16 +02:00
pacman -S --noconfirm --needed python python-pip python-setuptools base-devel dmidecode gobject-introspection gtk3 gcc
2021-11-04 21:23:41 +01:00
completed
2021-09-19 16:50:32 +02:00
;;
void)
detected_distro "Void Linux"
2023-09-06 07:27:16 +02:00
xbps-install -Sy python3 python3-pip python3-devel python3-setuptools base-devel dmidecode cairo-devel gobject-introspection gcc gtk+3
2021-11-04 21:23:41 +01:00
completed
2021-09-19 16:50:32 +02:00
;;
*) #Any other distro
manual_install
2021-11-04 21:23:41 +01:00
completed
2021-09-19 16:50:32 +02:00
;;
esac
2021-11-04 21:23:41 +01:00
complete_msg
2021-09-19 16:50:32 +02:00
else # In case /etc/os-release doesn't exist
manual_install
fi
2020-02-09 14:44:06 +01:00
}
2021-03-14 19:23:06 +01:00
function tool_remove {
files="files.txt"
share_dir="/usr/local/share/auto-cpufreq/"
2022-11-30 07:28:49 +01:00
srv_install="/usr/local/bin/auto-cpufreq-install"
srv_install_old="/usr/bin/auto-cpufreq-install"
srv_remove="/usr/local/bin/auto-cpufreq-remove"
srv_remove_old="/usr/bin/auto-cpufreq-remove"
2021-03-14 19:23:06 +01:00
stats_file="/var/run/auto-cpufreq.stats"
2022-11-30 07:28:49 +01:00
2021-12-21 20:14:02 +01:00
tool_proc_rm="/usr/local/bin/auto-cpufreq --remove"
wrapper_script="/usr/local/bin/auto-cpufreq"
Gtk Application for auto-cpufreq (#486)
* Squashed commit of the following:
commit ec7e087b343f33af7a92b190ed666845dab60f20
Merge: 32b6e63 9912f9d
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Mon Feb 13 14:11:21 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 32b6e632830fe8a7c3a3ce601ef2ba5b254572d7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 13 14:10:34 2023 -0600
increase MenuButton size
commit 12a2cda82a5f56bfbb532c893d822341e9b2d7cb
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:33 2023 -0600
set app icon
commit d170d07e866644bcb662bf342530c497390f0303
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:15 2023 -0600
remove unused pixbuf
commit 993333fb5aad448103e24e38bc85fb04e7e4dd0c
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 22:43:56 2023 -0600
fix MenuButton icon
commit d1b8bd74caab2cf216bf40bdfc35ef3520e891c7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:32 2023 -0600
add icon
commit 13f43fa0c7d59b2405bac688119690d01a7ec019
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:10 2023 -0600
add pkexec policy and change wrapper for gui
commit 4ddbb9c6667aa97bb7cd242fb4a376e061c9b308
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 14:09:35 2023 -0600
add icon to destop entry and about dialog
commit 9912f9d80935bb51c9cb759ab95c9ba7fde15524
Author: Siddharth Kumar Jha <101443068+siddharthkumarjha@users.noreply.github.com>
Date: Sun Feb 12 12:55:14 2023 +0530
Update Readme for issue of auto-cpufreq not autostarting on AUR (#485)
* Updated Readme for issue auto-cpufreq not autostarting
Added solution to issue https://github.com/AdnanHodzic/auto-cpufreq/issues/463
* Fixed minor errors
* Fixed auto-cpufreq.serivce Typo
* Reprashed text as per suggestion
commit 4379024adab282fcdb58a7091df2a6adf833e700
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Tue Feb 7 19:06:59 2023 -0600
add removal of gui and desktop entry
commit 42693703324762418a7f810f04a3d77803afa236
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:28:44 2023 -0600
CPU stats refresh and style stuff
commit 7149db72c0bb39af57ceccb16df8e9164c77fae3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:10:29 2023 -0600
daemon detection, daemon install/removal, and layout stuff
commit f7e03c9bcc2e2578703807ceeb7a652903571b71
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 19:26:42 2023 -0600
improve AboutDialog
Please enter the commit message for your changes. Lines starting
commit cb8cfe7b3194273dea229fe550fdf66cd6af82fa
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 18:28:19 2023 -0600
add dropdown menu and (not completed) about dialog
commit ade1fed790f2ebbaae4e92ce8879ab812c9b2850
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:57:17 2023 -0600
actually fix css
commit 67c8c97bcf2f2f408431bc162c38dee5c278ed0b
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:54:47 2023 -0600
fix css
commit c65eac3472f724bed10a0f530b2a828463bbe7fe
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Sun Feb 5 09:29:19 2023 +0100
Update readme, install psutil lib for power_helper
commit bd3feae38824764155d31ccd6debc1fcf18830da
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:42:52 2023 -0600
add desktop entry for gui
commit 5426a6a443c90a9d65b858ae1951219898cba332
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:33:08 2023 -0600
add gui to install file, update required packages, and create wrapper script
commit 84124dfa605b930b3722ed852486cbe11c254092
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:24 2023 -0600
create system tray
commit 7b0d46d8ddafdeff9006a1ad10ccd99c24b9eb1e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:01 2023 -0600
small changes to layout
commit cd51ea317085ac6ea5b4918ef057ad4c19a71640
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:44:08 2023 -0600
css styling support
commit 136b449febece04c036b72b4a14ccceb422f62dd
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:14:52 2023 -0600
several improvements
commit f9f7170391e1abc1499b7d5ae93327999e013730
Merge: 242a8d0 8f343df
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 22:44:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 8f343df8b8b82846364fbc14b2fc2e5144abebaa
Merge: dadfae0 b38919f
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:54:11 2023 -0600
Merge pull request #481 from shadeyg56/master
Fix uncaught error in checking for snap
commit b38919f56b6329c81c4c96eabe9bfd27d590d16e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Fri Feb 3 14:48:01 2023 -0600
fix uncaught error in checking for snap
commit 242a8d0401d1ffd00c982aa731c04ef7ea726fee
Merge: f50b982 dadfae0
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:19:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit dadfae087f102c0f69329d5ad79e3a648c35b459
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 20:02:03 2023 +0100
Update README with new config options
commit 471611de7da97b7da8580646612d4f910311e16e
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 18:44:33 2023 +0100
Remove GNOME Power Profiles Daemon performance install
commit f574257dc475f942fa39179787acf09c567e76dd
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 18:32:04 2023 +0100
Remove install_performance flag
commit 04b878360c7dff4b0e44fc8935e9667a597806b4
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 17:52:20 2023 +0100
Snap tag 2.0-beta + governor_override improvements
commit fe21ddf24585164ed0f8cfa8f9ad7d3db627ab79
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 17:28:12 2023 +0100
Working governor override on Snap package
commit f50b9829e5438bb96ded73775668fa048fcd3951
Merge: a98225e 69ef913
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Thu Feb 2 18:19:10 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit a98225e7280802c2fb09a9a52a40f7e55b26b3b1
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:18:43 2023 -0600
Revert "basic GUI"
This reverts commit d2610c921b7209fde7d7be13f187510631cc33b3.
commit 9606472fdbbff6dd551cd291b37349df17098d2e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:13:41 2023 -0600
basic gui
commit d2610c921b7209fde7d7be13f187510631cc33b3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 17:47:55 2023 -0600
basic GUI
commit bdbe12018b380ed70f100729c9ea3732ba24f572
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 15:21:42 2023 -0600
rename folder
commit 31095c472e4af734a3a601f804787de89ad47964
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Wed Jan 25 23:39:52 2023 -0600
add tray
* Squashed commit of the following:
commit e2eaffc32b382f67f97d2e25858b5b5a4abffeae
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 20 23:08:57 2023 -0600
move text to be inline with menu
commit e1dae9d9de25f13c51dd983f5b4b0fbdf1bf0349
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:50:26 2023 -0600
move distro info to top of system stats box
commit 959405bedc52dce14f5fd70d2fcd5fbee57e59a5
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:49:15 2023 -0600
fix app name on GNOME
commit 346093dfce6ce0bfa1954ed3bb6f5364250d05b7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:01:03 2023 -0600
fix snap dependencies
commit ec7e087b343f33af7a92b190ed666845dab60f20
Merge: 32b6e63 9912f9d
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Mon Feb 13 14:11:21 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 32b6e632830fe8a7c3a3ce601ef2ba5b254572d7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 13 14:10:34 2023 -0600
increase MenuButton size
commit 12a2cda82a5f56bfbb532c893d822341e9b2d7cb
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:33 2023 -0600
set app icon
commit d170d07e866644bcb662bf342530c497390f0303
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:15 2023 -0600
remove unused pixbuf
commit 993333fb5aad448103e24e38bc85fb04e7e4dd0c
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 22:43:56 2023 -0600
fix MenuButton icon
commit d1b8bd74caab2cf216bf40bdfc35ef3520e891c7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:32 2023 -0600
add icon
commit 13f43fa0c7d59b2405bac688119690d01a7ec019
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:10 2023 -0600
add pkexec policy and change wrapper for gui
commit 4ddbb9c6667aa97bb7cd242fb4a376e061c9b308
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 14:09:35 2023 -0600
add icon to destop entry and about dialog
commit 4379024adab282fcdb58a7091df2a6adf833e700
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Tue Feb 7 19:06:59 2023 -0600
add removal of gui and desktop entry
commit 42693703324762418a7f810f04a3d77803afa236
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:28:44 2023 -0600
CPU stats refresh and style stuff
commit 7149db72c0bb39af57ceccb16df8e9164c77fae3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:10:29 2023 -0600
daemon detection, daemon install/removal, and layout stuff
commit f7e03c9bcc2e2578703807ceeb7a652903571b71
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 19:26:42 2023 -0600
improve AboutDialog
Please enter the commit message for your changes. Lines starting
commit cb8cfe7b3194273dea229fe550fdf66cd6af82fa
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 18:28:19 2023 -0600
add dropdown menu and (not completed) about dialog
commit ade1fed790f2ebbaae4e92ce8879ab812c9b2850
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:57:17 2023 -0600
actually fix css
commit 67c8c97bcf2f2f408431bc162c38dee5c278ed0b
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:54:47 2023 -0600
fix css
commit bd3feae38824764155d31ccd6debc1fcf18830da
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:42:52 2023 -0600
add desktop entry for gui
commit 5426a6a443c90a9d65b858ae1951219898cba332
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:33:08 2023 -0600
add gui to install file, update required packages, and create wrapper script
commit 84124dfa605b930b3722ed852486cbe11c254092
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:24 2023 -0600
create system tray
commit 7b0d46d8ddafdeff9006a1ad10ccd99c24b9eb1e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:01 2023 -0600
small changes to layout
commit cd51ea317085ac6ea5b4918ef057ad4c19a71640
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:44:08 2023 -0600
css styling support
commit 136b449febece04c036b72b4a14ccceb422f62dd
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:14:52 2023 -0600
several improvements
commit f9f7170391e1abc1499b7d5ae93327999e013730
Merge: 242a8d0 8f343df
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 22:44:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 242a8d0401d1ffd00c982aa731c04ef7ea726fee
Merge: f50b982 dadfae0
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:19:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit f50b9829e5438bb96ded73775668fa048fcd3951
Merge: a98225e 69ef913
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Thu Feb 2 18:19:10 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit a98225e7280802c2fb09a9a52a40f7e55b26b3b1
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:18:43 2023 -0600
Revert "basic GUI"
This reverts commit d2610c921b7209fde7d7be13f187510631cc33b3.
commit 9606472fdbbff6dd551cd291b37349df17098d2e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:13:41 2023 -0600
basic gui
commit d2610c921b7209fde7d7be13f187510631cc33b3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 17:47:55 2023 -0600
basic GUI
commit bdbe12018b380ed70f100729c9ea3732ba24f572
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 15:21:42 2023 -0600
rename folder
commit 31095c472e4af734a3a601f804787de89ad47964
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Wed Jan 25 23:39:52 2023 -0600
add tray
* fix undefined var
* app no longer needs root to start, only asks when needed
* fix wmclass
* create file in /bin for gui
* fix bug with radio buttons and pkexec
* snap: update snap to package GTK gui
* update setup.py
* requirements.txt: fix conflict
* Merge master into dev
* gui: fix pkexec on launch
2023-08-15 17:58:16 +02:00
gui_wrapper_script="/usr/local/bin/auto-cpufreq-gtk"
2021-12-21 20:14:02 +01:00
unit_file="/etc/systemd/system/auto-cpufreq.service"
venv_path="/opt/auto-cpufreq"
2022-11-30 07:28:49 +01:00
cpufreqctl="/usr/local/bin/cpufreqctl.auto-cpufreq"
cpufreqctl_old="/usr/bin/cpufreqctl.auto-cpufreq"
2020-02-16 13:15:15 +01:00
Gtk Application for auto-cpufreq (#486)
* Squashed commit of the following:
commit ec7e087b343f33af7a92b190ed666845dab60f20
Merge: 32b6e63 9912f9d
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Mon Feb 13 14:11:21 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 32b6e632830fe8a7c3a3ce601ef2ba5b254572d7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 13 14:10:34 2023 -0600
increase MenuButton size
commit 12a2cda82a5f56bfbb532c893d822341e9b2d7cb
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:33 2023 -0600
set app icon
commit d170d07e866644bcb662bf342530c497390f0303
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:15 2023 -0600
remove unused pixbuf
commit 993333fb5aad448103e24e38bc85fb04e7e4dd0c
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 22:43:56 2023 -0600
fix MenuButton icon
commit d1b8bd74caab2cf216bf40bdfc35ef3520e891c7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:32 2023 -0600
add icon
commit 13f43fa0c7d59b2405bac688119690d01a7ec019
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:10 2023 -0600
add pkexec policy and change wrapper for gui
commit 4ddbb9c6667aa97bb7cd242fb4a376e061c9b308
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 14:09:35 2023 -0600
add icon to destop entry and about dialog
commit 9912f9d80935bb51c9cb759ab95c9ba7fde15524
Author: Siddharth Kumar Jha <101443068+siddharthkumarjha@users.noreply.github.com>
Date: Sun Feb 12 12:55:14 2023 +0530
Update Readme for issue of auto-cpufreq not autostarting on AUR (#485)
* Updated Readme for issue auto-cpufreq not autostarting
Added solution to issue https://github.com/AdnanHodzic/auto-cpufreq/issues/463
* Fixed minor errors
* Fixed auto-cpufreq.serivce Typo
* Reprashed text as per suggestion
commit 4379024adab282fcdb58a7091df2a6adf833e700
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Tue Feb 7 19:06:59 2023 -0600
add removal of gui and desktop entry
commit 42693703324762418a7f810f04a3d77803afa236
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:28:44 2023 -0600
CPU stats refresh and style stuff
commit 7149db72c0bb39af57ceccb16df8e9164c77fae3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:10:29 2023 -0600
daemon detection, daemon install/removal, and layout stuff
commit f7e03c9bcc2e2578703807ceeb7a652903571b71
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 19:26:42 2023 -0600
improve AboutDialog
Please enter the commit message for your changes. Lines starting
commit cb8cfe7b3194273dea229fe550fdf66cd6af82fa
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 18:28:19 2023 -0600
add dropdown menu and (not completed) about dialog
commit ade1fed790f2ebbaae4e92ce8879ab812c9b2850
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:57:17 2023 -0600
actually fix css
commit 67c8c97bcf2f2f408431bc162c38dee5c278ed0b
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:54:47 2023 -0600
fix css
commit c65eac3472f724bed10a0f530b2a828463bbe7fe
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Sun Feb 5 09:29:19 2023 +0100
Update readme, install psutil lib for power_helper
commit bd3feae38824764155d31ccd6debc1fcf18830da
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:42:52 2023 -0600
add desktop entry for gui
commit 5426a6a443c90a9d65b858ae1951219898cba332
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:33:08 2023 -0600
add gui to install file, update required packages, and create wrapper script
commit 84124dfa605b930b3722ed852486cbe11c254092
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:24 2023 -0600
create system tray
commit 7b0d46d8ddafdeff9006a1ad10ccd99c24b9eb1e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:01 2023 -0600
small changes to layout
commit cd51ea317085ac6ea5b4918ef057ad4c19a71640
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:44:08 2023 -0600
css styling support
commit 136b449febece04c036b72b4a14ccceb422f62dd
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:14:52 2023 -0600
several improvements
commit f9f7170391e1abc1499b7d5ae93327999e013730
Merge: 242a8d0 8f343df
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 22:44:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 8f343df8b8b82846364fbc14b2fc2e5144abebaa
Merge: dadfae0 b38919f
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:54:11 2023 -0600
Merge pull request #481 from shadeyg56/master
Fix uncaught error in checking for snap
commit b38919f56b6329c81c4c96eabe9bfd27d590d16e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Fri Feb 3 14:48:01 2023 -0600
fix uncaught error in checking for snap
commit 242a8d0401d1ffd00c982aa731c04ef7ea726fee
Merge: f50b982 dadfae0
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:19:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit dadfae087f102c0f69329d5ad79e3a648c35b459
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 20:02:03 2023 +0100
Update README with new config options
commit 471611de7da97b7da8580646612d4f910311e16e
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 18:44:33 2023 +0100
Remove GNOME Power Profiles Daemon performance install
commit f574257dc475f942fa39179787acf09c567e76dd
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 18:32:04 2023 +0100
Remove install_performance flag
commit 04b878360c7dff4b0e44fc8935e9667a597806b4
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 17:52:20 2023 +0100
Snap tag 2.0-beta + governor_override improvements
commit fe21ddf24585164ed0f8cfa8f9ad7d3db627ab79
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 17:28:12 2023 +0100
Working governor override on Snap package
commit f50b9829e5438bb96ded73775668fa048fcd3951
Merge: a98225e 69ef913
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Thu Feb 2 18:19:10 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit a98225e7280802c2fb09a9a52a40f7e55b26b3b1
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:18:43 2023 -0600
Revert "basic GUI"
This reverts commit d2610c921b7209fde7d7be13f187510631cc33b3.
commit 9606472fdbbff6dd551cd291b37349df17098d2e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:13:41 2023 -0600
basic gui
commit d2610c921b7209fde7d7be13f187510631cc33b3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 17:47:55 2023 -0600
basic GUI
commit bdbe12018b380ed70f100729c9ea3732ba24f572
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 15:21:42 2023 -0600
rename folder
commit 31095c472e4af734a3a601f804787de89ad47964
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Wed Jan 25 23:39:52 2023 -0600
add tray
* Squashed commit of the following:
commit e2eaffc32b382f67f97d2e25858b5b5a4abffeae
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 20 23:08:57 2023 -0600
move text to be inline with menu
commit e1dae9d9de25f13c51dd983f5b4b0fbdf1bf0349
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:50:26 2023 -0600
move distro info to top of system stats box
commit 959405bedc52dce14f5fd70d2fcd5fbee57e59a5
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:49:15 2023 -0600
fix app name on GNOME
commit 346093dfce6ce0bfa1954ed3bb6f5364250d05b7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:01:03 2023 -0600
fix snap dependencies
commit ec7e087b343f33af7a92b190ed666845dab60f20
Merge: 32b6e63 9912f9d
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Mon Feb 13 14:11:21 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 32b6e632830fe8a7c3a3ce601ef2ba5b254572d7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 13 14:10:34 2023 -0600
increase MenuButton size
commit 12a2cda82a5f56bfbb532c893d822341e9b2d7cb
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:33 2023 -0600
set app icon
commit d170d07e866644bcb662bf342530c497390f0303
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:15 2023 -0600
remove unused pixbuf
commit 993333fb5aad448103e24e38bc85fb04e7e4dd0c
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 22:43:56 2023 -0600
fix MenuButton icon
commit d1b8bd74caab2cf216bf40bdfc35ef3520e891c7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:32 2023 -0600
add icon
commit 13f43fa0c7d59b2405bac688119690d01a7ec019
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:10 2023 -0600
add pkexec policy and change wrapper for gui
commit 4ddbb9c6667aa97bb7cd242fb4a376e061c9b308
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 14:09:35 2023 -0600
add icon to destop entry and about dialog
commit 4379024adab282fcdb58a7091df2a6adf833e700
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Tue Feb 7 19:06:59 2023 -0600
add removal of gui and desktop entry
commit 42693703324762418a7f810f04a3d77803afa236
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:28:44 2023 -0600
CPU stats refresh and style stuff
commit 7149db72c0bb39af57ceccb16df8e9164c77fae3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:10:29 2023 -0600
daemon detection, daemon install/removal, and layout stuff
commit f7e03c9bcc2e2578703807ceeb7a652903571b71
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 19:26:42 2023 -0600
improve AboutDialog
Please enter the commit message for your changes. Lines starting
commit cb8cfe7b3194273dea229fe550fdf66cd6af82fa
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 18:28:19 2023 -0600
add dropdown menu and (not completed) about dialog
commit ade1fed790f2ebbaae4e92ce8879ab812c9b2850
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:57:17 2023 -0600
actually fix css
commit 67c8c97bcf2f2f408431bc162c38dee5c278ed0b
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:54:47 2023 -0600
fix css
commit bd3feae38824764155d31ccd6debc1fcf18830da
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:42:52 2023 -0600
add desktop entry for gui
commit 5426a6a443c90a9d65b858ae1951219898cba332
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:33:08 2023 -0600
add gui to install file, update required packages, and create wrapper script
commit 84124dfa605b930b3722ed852486cbe11c254092
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:24 2023 -0600
create system tray
commit 7b0d46d8ddafdeff9006a1ad10ccd99c24b9eb1e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:01 2023 -0600
small changes to layout
commit cd51ea317085ac6ea5b4918ef057ad4c19a71640
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:44:08 2023 -0600
css styling support
commit 136b449febece04c036b72b4a14ccceb422f62dd
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:14:52 2023 -0600
several improvements
commit f9f7170391e1abc1499b7d5ae93327999e013730
Merge: 242a8d0 8f343df
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 22:44:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 242a8d0401d1ffd00c982aa731c04ef7ea726fee
Merge: f50b982 dadfae0
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:19:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit f50b9829e5438bb96ded73775668fa048fcd3951
Merge: a98225e 69ef913
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Thu Feb 2 18:19:10 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit a98225e7280802c2fb09a9a52a40f7e55b26b3b1
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:18:43 2023 -0600
Revert "basic GUI"
This reverts commit d2610c921b7209fde7d7be13f187510631cc33b3.
commit 9606472fdbbff6dd551cd291b37349df17098d2e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:13:41 2023 -0600
basic gui
commit d2610c921b7209fde7d7be13f187510631cc33b3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 17:47:55 2023 -0600
basic GUI
commit bdbe12018b380ed70f100729c9ea3732ba24f572
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 15:21:42 2023 -0600
rename folder
commit 31095c472e4af734a3a601f804787de89ad47964
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Wed Jan 25 23:39:52 2023 -0600
add tray
* fix undefined var
* app no longer needs root to start, only asks when needed
* fix wmclass
* create file in /bin for gui
* fix bug with radio buttons and pkexec
* snap: update snap to package GTK gui
* update setup.py
* requirements.txt: fix conflict
* Merge master into dev
* gui: fix pkexec on launch
2023-08-15 17:58:16 +02:00
desktop_file="/usr/share/applications/auto-cpufreq-gtk.desktop"
2021-03-14 19:23:06 +01:00
# stop any running auto-cpufreq argument (daemon/live/monitor)
tool_arg_pids=($(pgrep -f "auto-cpufreq --"))
for pid in "${tool_arg_pids[@]}"; do
if [[ $tool_arg_pids != $$ ]]; then
kill "$tool_arg_pids"
fi
done
2020-02-17 10:06:58 +01:00
2021-03-14 19:23:06 +01:00
# run uninstall in case of installed daemon
2022-12-05 06:32:51 +01:00
if [ -f $srv_remove -o -f $srv_remove_old -o $wrapper_script ]; then
2020-02-16 13:15:15 +01:00
eval $tool_proc_rm
2022-11-30 07:28:49 +01:00
else
separator
printf "Couldn't remove the auto-cpufreq daemon\n$srv_remove or $srv_remove_old do not exist.\n"
exit 1;
separator
2021-03-14 19:23:06 +01:00
fi
2020-02-16 13:15:15 +01:00
2021-03-14 19:23:06 +01:00
# remove auto-cpufreq and all its supporting files
[ -f $files ] && cat $files | xargs sudo rm -rf && rm -f $files
2021-12-20 19:14:55 +01:00
[ -d $share_dir ] && rm -rf $share_dir
2020-02-16 13:15:15 +01:00
2021-03-14 19:23:06 +01:00
# files cleanup
[ -f $srv_install ] && rm $srv_install
2022-11-30 07:28:49 +01:00
[ -f $srv_install_old ] && rm $srv_install_old
2021-03-14 19:23:06 +01:00
[ -f $srv_remove ] && rm $srv_remove
2022-11-30 07:28:49 +01:00
[ -f $srv_remove_old ] && rm $srv_remove_old
2021-03-14 19:23:06 +01:00
[ -f $stats_file ] && rm $stats_file
2021-12-21 20:14:02 +01:00
[ -f $unit_file ] && rm $unit_file
[ -f $wrapper_script ] && rm $wrapper_script
Gtk Application for auto-cpufreq (#486)
* Squashed commit of the following:
commit ec7e087b343f33af7a92b190ed666845dab60f20
Merge: 32b6e63 9912f9d
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Mon Feb 13 14:11:21 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 32b6e632830fe8a7c3a3ce601ef2ba5b254572d7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 13 14:10:34 2023 -0600
increase MenuButton size
commit 12a2cda82a5f56bfbb532c893d822341e9b2d7cb
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:33 2023 -0600
set app icon
commit d170d07e866644bcb662bf342530c497390f0303
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:15 2023 -0600
remove unused pixbuf
commit 993333fb5aad448103e24e38bc85fb04e7e4dd0c
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 22:43:56 2023 -0600
fix MenuButton icon
commit d1b8bd74caab2cf216bf40bdfc35ef3520e891c7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:32 2023 -0600
add icon
commit 13f43fa0c7d59b2405bac688119690d01a7ec019
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:10 2023 -0600
add pkexec policy and change wrapper for gui
commit 4ddbb9c6667aa97bb7cd242fb4a376e061c9b308
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 14:09:35 2023 -0600
add icon to destop entry and about dialog
commit 9912f9d80935bb51c9cb759ab95c9ba7fde15524
Author: Siddharth Kumar Jha <101443068+siddharthkumarjha@users.noreply.github.com>
Date: Sun Feb 12 12:55:14 2023 +0530
Update Readme for issue of auto-cpufreq not autostarting on AUR (#485)
* Updated Readme for issue auto-cpufreq not autostarting
Added solution to issue https://github.com/AdnanHodzic/auto-cpufreq/issues/463
* Fixed minor errors
* Fixed auto-cpufreq.serivce Typo
* Reprashed text as per suggestion
commit 4379024adab282fcdb58a7091df2a6adf833e700
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Tue Feb 7 19:06:59 2023 -0600
add removal of gui and desktop entry
commit 42693703324762418a7f810f04a3d77803afa236
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:28:44 2023 -0600
CPU stats refresh and style stuff
commit 7149db72c0bb39af57ceccb16df8e9164c77fae3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:10:29 2023 -0600
daemon detection, daemon install/removal, and layout stuff
commit f7e03c9bcc2e2578703807ceeb7a652903571b71
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 19:26:42 2023 -0600
improve AboutDialog
Please enter the commit message for your changes. Lines starting
commit cb8cfe7b3194273dea229fe550fdf66cd6af82fa
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 18:28:19 2023 -0600
add dropdown menu and (not completed) about dialog
commit ade1fed790f2ebbaae4e92ce8879ab812c9b2850
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:57:17 2023 -0600
actually fix css
commit 67c8c97bcf2f2f408431bc162c38dee5c278ed0b
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:54:47 2023 -0600
fix css
commit c65eac3472f724bed10a0f530b2a828463bbe7fe
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Sun Feb 5 09:29:19 2023 +0100
Update readme, install psutil lib for power_helper
commit bd3feae38824764155d31ccd6debc1fcf18830da
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:42:52 2023 -0600
add desktop entry for gui
commit 5426a6a443c90a9d65b858ae1951219898cba332
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:33:08 2023 -0600
add gui to install file, update required packages, and create wrapper script
commit 84124dfa605b930b3722ed852486cbe11c254092
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:24 2023 -0600
create system tray
commit 7b0d46d8ddafdeff9006a1ad10ccd99c24b9eb1e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:01 2023 -0600
small changes to layout
commit cd51ea317085ac6ea5b4918ef057ad4c19a71640
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:44:08 2023 -0600
css styling support
commit 136b449febece04c036b72b4a14ccceb422f62dd
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:14:52 2023 -0600
several improvements
commit f9f7170391e1abc1499b7d5ae93327999e013730
Merge: 242a8d0 8f343df
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 22:44:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 8f343df8b8b82846364fbc14b2fc2e5144abebaa
Merge: dadfae0 b38919f
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:54:11 2023 -0600
Merge pull request #481 from shadeyg56/master
Fix uncaught error in checking for snap
commit b38919f56b6329c81c4c96eabe9bfd27d590d16e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Fri Feb 3 14:48:01 2023 -0600
fix uncaught error in checking for snap
commit 242a8d0401d1ffd00c982aa731c04ef7ea726fee
Merge: f50b982 dadfae0
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:19:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit dadfae087f102c0f69329d5ad79e3a648c35b459
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 20:02:03 2023 +0100
Update README with new config options
commit 471611de7da97b7da8580646612d4f910311e16e
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 18:44:33 2023 +0100
Remove GNOME Power Profiles Daemon performance install
commit f574257dc475f942fa39179787acf09c567e76dd
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 18:32:04 2023 +0100
Remove install_performance flag
commit 04b878360c7dff4b0e44fc8935e9667a597806b4
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 17:52:20 2023 +0100
Snap tag 2.0-beta + governor_override improvements
commit fe21ddf24585164ed0f8cfa8f9ad7d3db627ab79
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 17:28:12 2023 +0100
Working governor override on Snap package
commit f50b9829e5438bb96ded73775668fa048fcd3951
Merge: a98225e 69ef913
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Thu Feb 2 18:19:10 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit a98225e7280802c2fb09a9a52a40f7e55b26b3b1
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:18:43 2023 -0600
Revert "basic GUI"
This reverts commit d2610c921b7209fde7d7be13f187510631cc33b3.
commit 9606472fdbbff6dd551cd291b37349df17098d2e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:13:41 2023 -0600
basic gui
commit d2610c921b7209fde7d7be13f187510631cc33b3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 17:47:55 2023 -0600
basic GUI
commit bdbe12018b380ed70f100729c9ea3732ba24f572
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 15:21:42 2023 -0600
rename folder
commit 31095c472e4af734a3a601f804787de89ad47964
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Wed Jan 25 23:39:52 2023 -0600
add tray
* Squashed commit of the following:
commit e2eaffc32b382f67f97d2e25858b5b5a4abffeae
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 20 23:08:57 2023 -0600
move text to be inline with menu
commit e1dae9d9de25f13c51dd983f5b4b0fbdf1bf0349
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:50:26 2023 -0600
move distro info to top of system stats box
commit 959405bedc52dce14f5fd70d2fcd5fbee57e59a5
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:49:15 2023 -0600
fix app name on GNOME
commit 346093dfce6ce0bfa1954ed3bb6f5364250d05b7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:01:03 2023 -0600
fix snap dependencies
commit ec7e087b343f33af7a92b190ed666845dab60f20
Merge: 32b6e63 9912f9d
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Mon Feb 13 14:11:21 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 32b6e632830fe8a7c3a3ce601ef2ba5b254572d7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 13 14:10:34 2023 -0600
increase MenuButton size
commit 12a2cda82a5f56bfbb532c893d822341e9b2d7cb
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:33 2023 -0600
set app icon
commit d170d07e866644bcb662bf342530c497390f0303
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:15 2023 -0600
remove unused pixbuf
commit 993333fb5aad448103e24e38bc85fb04e7e4dd0c
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 22:43:56 2023 -0600
fix MenuButton icon
commit d1b8bd74caab2cf216bf40bdfc35ef3520e891c7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:32 2023 -0600
add icon
commit 13f43fa0c7d59b2405bac688119690d01a7ec019
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:10 2023 -0600
add pkexec policy and change wrapper for gui
commit 4ddbb9c6667aa97bb7cd242fb4a376e061c9b308
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 14:09:35 2023 -0600
add icon to destop entry and about dialog
commit 4379024adab282fcdb58a7091df2a6adf833e700
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Tue Feb 7 19:06:59 2023 -0600
add removal of gui and desktop entry
commit 42693703324762418a7f810f04a3d77803afa236
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:28:44 2023 -0600
CPU stats refresh and style stuff
commit 7149db72c0bb39af57ceccb16df8e9164c77fae3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:10:29 2023 -0600
daemon detection, daemon install/removal, and layout stuff
commit f7e03c9bcc2e2578703807ceeb7a652903571b71
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 19:26:42 2023 -0600
improve AboutDialog
Please enter the commit message for your changes. Lines starting
commit cb8cfe7b3194273dea229fe550fdf66cd6af82fa
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 18:28:19 2023 -0600
add dropdown menu and (not completed) about dialog
commit ade1fed790f2ebbaae4e92ce8879ab812c9b2850
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:57:17 2023 -0600
actually fix css
commit 67c8c97bcf2f2f408431bc162c38dee5c278ed0b
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:54:47 2023 -0600
fix css
commit bd3feae38824764155d31ccd6debc1fcf18830da
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:42:52 2023 -0600
add desktop entry for gui
commit 5426a6a443c90a9d65b858ae1951219898cba332
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:33:08 2023 -0600
add gui to install file, update required packages, and create wrapper script
commit 84124dfa605b930b3722ed852486cbe11c254092
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:24 2023 -0600
create system tray
commit 7b0d46d8ddafdeff9006a1ad10ccd99c24b9eb1e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:01 2023 -0600
small changes to layout
commit cd51ea317085ac6ea5b4918ef057ad4c19a71640
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:44:08 2023 -0600
css styling support
commit 136b449febece04c036b72b4a14ccceb422f62dd
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:14:52 2023 -0600
several improvements
commit f9f7170391e1abc1499b7d5ae93327999e013730
Merge: 242a8d0 8f343df
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 22:44:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 242a8d0401d1ffd00c982aa731c04ef7ea726fee
Merge: f50b982 dadfae0
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:19:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit f50b9829e5438bb96ded73775668fa048fcd3951
Merge: a98225e 69ef913
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Thu Feb 2 18:19:10 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit a98225e7280802c2fb09a9a52a40f7e55b26b3b1
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:18:43 2023 -0600
Revert "basic GUI"
This reverts commit d2610c921b7209fde7d7be13f187510631cc33b3.
commit 9606472fdbbff6dd551cd291b37349df17098d2e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:13:41 2023 -0600
basic gui
commit d2610c921b7209fde7d7be13f187510631cc33b3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 17:47:55 2023 -0600
basic GUI
commit bdbe12018b380ed70f100729c9ea3732ba24f572
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 15:21:42 2023 -0600
rename folder
commit 31095c472e4af734a3a601f804787de89ad47964
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Wed Jan 25 23:39:52 2023 -0600
add tray
* fix undefined var
* app no longer needs root to start, only asks when needed
* fix wmclass
* create file in /bin for gui
* fix bug with radio buttons and pkexec
* snap: update snap to package GTK gui
* update setup.py
* requirements.txt: fix conflict
* Merge master into dev
* gui: fix pkexec on launch
2023-08-15 17:58:16 +02:00
[ -f $gui_wrapper_script ] && rm $gui_wrapper_script
2022-01-08 19:05:15 +01:00
[ -f $cpufreqctl ] && rm $cpufreqctl
2022-11-30 07:28:49 +01:00
[ -f $cpufreqctl_old ] && rm $cpufreqctl_old
2021-12-21 20:14:02 +01:00
Gtk Application for auto-cpufreq (#486)
* Squashed commit of the following:
commit ec7e087b343f33af7a92b190ed666845dab60f20
Merge: 32b6e63 9912f9d
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Mon Feb 13 14:11:21 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 32b6e632830fe8a7c3a3ce601ef2ba5b254572d7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 13 14:10:34 2023 -0600
increase MenuButton size
commit 12a2cda82a5f56bfbb532c893d822341e9b2d7cb
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:33 2023 -0600
set app icon
commit d170d07e866644bcb662bf342530c497390f0303
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:15 2023 -0600
remove unused pixbuf
commit 993333fb5aad448103e24e38bc85fb04e7e4dd0c
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 22:43:56 2023 -0600
fix MenuButton icon
commit d1b8bd74caab2cf216bf40bdfc35ef3520e891c7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:32 2023 -0600
add icon
commit 13f43fa0c7d59b2405bac688119690d01a7ec019
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:10 2023 -0600
add pkexec policy and change wrapper for gui
commit 4ddbb9c6667aa97bb7cd242fb4a376e061c9b308
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 14:09:35 2023 -0600
add icon to destop entry and about dialog
commit 9912f9d80935bb51c9cb759ab95c9ba7fde15524
Author: Siddharth Kumar Jha <101443068+siddharthkumarjha@users.noreply.github.com>
Date: Sun Feb 12 12:55:14 2023 +0530
Update Readme for issue of auto-cpufreq not autostarting on AUR (#485)
* Updated Readme for issue auto-cpufreq not autostarting
Added solution to issue https://github.com/AdnanHodzic/auto-cpufreq/issues/463
* Fixed minor errors
* Fixed auto-cpufreq.serivce Typo
* Reprashed text as per suggestion
commit 4379024adab282fcdb58a7091df2a6adf833e700
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Tue Feb 7 19:06:59 2023 -0600
add removal of gui and desktop entry
commit 42693703324762418a7f810f04a3d77803afa236
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:28:44 2023 -0600
CPU stats refresh and style stuff
commit 7149db72c0bb39af57ceccb16df8e9164c77fae3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:10:29 2023 -0600
daemon detection, daemon install/removal, and layout stuff
commit f7e03c9bcc2e2578703807ceeb7a652903571b71
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 19:26:42 2023 -0600
improve AboutDialog
Please enter the commit message for your changes. Lines starting
commit cb8cfe7b3194273dea229fe550fdf66cd6af82fa
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 18:28:19 2023 -0600
add dropdown menu and (not completed) about dialog
commit ade1fed790f2ebbaae4e92ce8879ab812c9b2850
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:57:17 2023 -0600
actually fix css
commit 67c8c97bcf2f2f408431bc162c38dee5c278ed0b
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:54:47 2023 -0600
fix css
commit c65eac3472f724bed10a0f530b2a828463bbe7fe
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Sun Feb 5 09:29:19 2023 +0100
Update readme, install psutil lib for power_helper
commit bd3feae38824764155d31ccd6debc1fcf18830da
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:42:52 2023 -0600
add desktop entry for gui
commit 5426a6a443c90a9d65b858ae1951219898cba332
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:33:08 2023 -0600
add gui to install file, update required packages, and create wrapper script
commit 84124dfa605b930b3722ed852486cbe11c254092
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:24 2023 -0600
create system tray
commit 7b0d46d8ddafdeff9006a1ad10ccd99c24b9eb1e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:01 2023 -0600
small changes to layout
commit cd51ea317085ac6ea5b4918ef057ad4c19a71640
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:44:08 2023 -0600
css styling support
commit 136b449febece04c036b72b4a14ccceb422f62dd
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:14:52 2023 -0600
several improvements
commit f9f7170391e1abc1499b7d5ae93327999e013730
Merge: 242a8d0 8f343df
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 22:44:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 8f343df8b8b82846364fbc14b2fc2e5144abebaa
Merge: dadfae0 b38919f
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:54:11 2023 -0600
Merge pull request #481 from shadeyg56/master
Fix uncaught error in checking for snap
commit b38919f56b6329c81c4c96eabe9bfd27d590d16e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Fri Feb 3 14:48:01 2023 -0600
fix uncaught error in checking for snap
commit 242a8d0401d1ffd00c982aa731c04ef7ea726fee
Merge: f50b982 dadfae0
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:19:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit dadfae087f102c0f69329d5ad79e3a648c35b459
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 20:02:03 2023 +0100
Update README with new config options
commit 471611de7da97b7da8580646612d4f910311e16e
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 18:44:33 2023 +0100
Remove GNOME Power Profiles Daemon performance install
commit f574257dc475f942fa39179787acf09c567e76dd
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 18:32:04 2023 +0100
Remove install_performance flag
commit 04b878360c7dff4b0e44fc8935e9667a597806b4
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 17:52:20 2023 +0100
Snap tag 2.0-beta + governor_override improvements
commit fe21ddf24585164ed0f8cfa8f9ad7d3db627ab79
Author: Adnan Hodzic <adnan@hodzic.org>
Date: Fri Feb 3 17:28:12 2023 +0100
Working governor override on Snap package
commit f50b9829e5438bb96ded73775668fa048fcd3951
Merge: a98225e 69ef913
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Thu Feb 2 18:19:10 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit a98225e7280802c2fb09a9a52a40f7e55b26b3b1
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:18:43 2023 -0600
Revert "basic GUI"
This reverts commit d2610c921b7209fde7d7be13f187510631cc33b3.
commit 9606472fdbbff6dd551cd291b37349df17098d2e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:13:41 2023 -0600
basic gui
commit d2610c921b7209fde7d7be13f187510631cc33b3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 17:47:55 2023 -0600
basic GUI
commit bdbe12018b380ed70f100729c9ea3732ba24f572
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 15:21:42 2023 -0600
rename folder
commit 31095c472e4af734a3a601f804787de89ad47964
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Wed Jan 25 23:39:52 2023 -0600
add tray
* Squashed commit of the following:
commit e2eaffc32b382f67f97d2e25858b5b5a4abffeae
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 20 23:08:57 2023 -0600
move text to be inline with menu
commit e1dae9d9de25f13c51dd983f5b4b0fbdf1bf0349
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:50:26 2023 -0600
move distro info to top of system stats box
commit 959405bedc52dce14f5fd70d2fcd5fbee57e59a5
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:49:15 2023 -0600
fix app name on GNOME
commit 346093dfce6ce0bfa1954ed3bb6f5364250d05b7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 19 17:01:03 2023 -0600
fix snap dependencies
commit ec7e087b343f33af7a92b190ed666845dab60f20
Merge: 32b6e63 9912f9d
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Mon Feb 13 14:11:21 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 32b6e632830fe8a7c3a3ce601ef2ba5b254572d7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 13 14:10:34 2023 -0600
increase MenuButton size
commit 12a2cda82a5f56bfbb532c893d822341e9b2d7cb
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:33 2023 -0600
set app icon
commit d170d07e866644bcb662bf342530c497390f0303
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 23:35:15 2023 -0600
remove unused pixbuf
commit 993333fb5aad448103e24e38bc85fb04e7e4dd0c
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 22:43:56 2023 -0600
fix MenuButton icon
commit d1b8bd74caab2cf216bf40bdfc35ef3520e891c7
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:32 2023 -0600
add icon
commit 13f43fa0c7d59b2405bac688119690d01a7ec019
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 17:19:10 2023 -0600
add pkexec policy and change wrapper for gui
commit 4ddbb9c6667aa97bb7cd242fb4a376e061c9b308
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 12 14:09:35 2023 -0600
add icon to destop entry and about dialog
commit 4379024adab282fcdb58a7091df2a6adf833e700
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Tue Feb 7 19:06:59 2023 -0600
add removal of gui and desktop entry
commit 42693703324762418a7f810f04a3d77803afa236
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:28:44 2023 -0600
CPU stats refresh and style stuff
commit 7149db72c0bb39af57ceccb16df8e9164c77fae3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Mon Feb 6 23:10:29 2023 -0600
daemon detection, daemon install/removal, and layout stuff
commit f7e03c9bcc2e2578703807ceeb7a652903571b71
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 19:26:42 2023 -0600
improve AboutDialog
Please enter the commit message for your changes. Lines starting
commit cb8cfe7b3194273dea229fe550fdf66cd6af82fa
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 18:28:19 2023 -0600
add dropdown menu and (not completed) about dialog
commit ade1fed790f2ebbaae4e92ce8879ab812c9b2850
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:57:17 2023 -0600
actually fix css
commit 67c8c97bcf2f2f408431bc162c38dee5c278ed0b
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 15:54:47 2023 -0600
fix css
commit bd3feae38824764155d31ccd6debc1fcf18830da
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:42:52 2023 -0600
add desktop entry for gui
commit 5426a6a443c90a9d65b858ae1951219898cba332
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sun Feb 5 00:33:08 2023 -0600
add gui to install file, update required packages, and create wrapper script
commit 84124dfa605b930b3722ed852486cbe11c254092
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:24 2023 -0600
create system tray
commit 7b0d46d8ddafdeff9006a1ad10ccd99c24b9eb1e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 23:28:01 2023 -0600
small changes to layout
commit cd51ea317085ac6ea5b4918ef057ad4c19a71640
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:44:08 2023 -0600
css styling support
commit 136b449febece04c036b72b4a14ccceb422f62dd
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Sat Feb 4 00:14:52 2023 -0600
several improvements
commit f9f7170391e1abc1499b7d5ae93327999e013730
Merge: 242a8d0 8f343df
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 22:44:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit 242a8d0401d1ffd00c982aa731c04ef7ea726fee
Merge: f50b982 dadfae0
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Fri Feb 3 14:19:01 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit f50b9829e5438bb96ded73775668fa048fcd3951
Merge: a98225e 69ef913
Author: shadeyg56 <31134255+shadeyg56@users.noreply.github.com>
Date: Thu Feb 2 18:19:10 2023 -0600
Merge branch 'AdnanHodzic:master' into gui
commit a98225e7280802c2fb09a9a52a40f7e55b26b3b1
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:18:43 2023 -0600
Revert "basic GUI"
This reverts commit d2610c921b7209fde7d7be13f187510631cc33b3.
commit 9606472fdbbff6dd551cd291b37349df17098d2e
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 18:13:41 2023 -0600
basic gui
commit d2610c921b7209fde7d7be13f187510631cc33b3
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 17:47:55 2023 -0600
basic GUI
commit bdbe12018b380ed70f100729c9ea3732ba24f572
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Thu Feb 2 15:21:42 2023 -0600
rename folder
commit 31095c472e4af734a3a601f804787de89ad47964
Author: shadeyg56 <shadeyg56@gmail.com>
Date: Wed Jan 25 23:39:52 2023 -0600
add tray
* fix undefined var
* app no longer needs root to start, only asks when needed
* fix wmclass
* create file in /bin for gui
* fix bug with radio buttons and pkexec
* snap: update snap to package GTK gui
* update setup.py
* requirements.txt: fix conflict
* Merge master into dev
* gui: fix pkexec on launch
2023-08-15 17:58:16 +02:00
[ -f $desktop_file ] && rm $desktop_file
update-desktop-database /usr/share/applications
2021-12-21 20:14:02 +01:00
# remove python virtual environment
rm -rf "${venv_path}"
2020-02-09 14:44:06 +01:00
2021-03-14 19:23:06 +01:00
separator
echo -e "\nauto-cpufreq tool and all its supporting files successfully removed."
separator
2020-02-09 14:44:06 +01:00
}
2023-07-15 21:32:23 +02:00
function tool_update {
# Specify the repository and package name
# IT IS IMPORTANT TO NOTE THAT IF THE REPOSITORY STRUCTURE IS CHANGED, THE FOLLOWING FUNCTION NEEDS TO BE UPDATED ACCORDINGLY
repository="AdnanHodzic/auto-cpufreq"
# Fetch the latest release information from GitHub API
latest_release=$(curl -s "https://api.github.com/repos/$repository/releases/latest")
# Extract the latest release version without using jq
latest_version=$(echo "$latest_release" | grep -o '"tag_name": "[^"]*' | cut -d'"' -f4)
# Get the current version of auto-cpufreq
#installed_version=$(pip list | awk '/auto-cpufreq/ {print $2}')
installed_version=$(grep -oP "(?<=__requires__ = 'auto-cpufreq==)\d+(\.\d+)+" /opt/auto-cpufreq/venv/bin/auto-cpufreq)
#Check whether the same is installed or not
if [[ -z "$installed_version" ]]; then
echo "Current version not found, please install auto-cpufreq first"
echo $installed_version
sleep 1
exit 1
fi
installed_version="v$installed_version"
# Compare the latest version with the installed version and perform update if necessary
if [[ "$latest_version" == "$installed_version" ]]; then
echo "auto-cpufreq is up to date"
else
echo -e "Updates are available,\nCurrent version: $installed_version\nLatest version: $latest_version \nNote that your previous custom settings might be \033[1merased\033[0m with the following update \nalong with the \033[1mcurrent\033[0m directory. "
read -p "Do you want to update auto-cpufreq to the latest release? [y/n]: " ans
if [[ "$ans" == "y" ]]; then
header "Updating auto-cpufreq to the latest release\n"
tool_remove
echo -e "deleting the current directory\n"
script_directory="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
mkdir "$script_directory/../auto-cpufreq $latest_version" && cd $_
rm -rf $script_directory
echo -e "cloning to the latest release\n"
git clone https://github.com/AdnanHodzic/auto-cpufreq.git
cd auto-cpufreq
separator
tool_install
else
separator
echo "Aborting..."
sleep 0.5
fi
fi
}
2020-02-09 14:44:06 +01:00
2021-03-14 19:23:06 +01:00
function ask_operation {
2022-12-05 06:32:51 +01:00
header "auto-cpufreq installer"
echo -e "Welcome to auto-cpufreq tool installer.
\nOptions:\n"
2021-09-19 16:50:32 +02:00
read -p \
"[I]nstall
2023-07-15 21:32:23 +02:00
[U]pdate
2020-02-09 14:44:06 +01:00
[R]emove
[Q]uit
2023-07-15 21:32:23 +02:00
Select a key: [i/u/r/q]: " answer
2020-02-09 14:44:06 +01:00
}
2021-09-19 16:50:32 +02:00
# End of functions
2020-02-09 14:44:06 +01:00
root_check
2021-03-14 19:23:06 +01:00
if [[ -z "${1}" ]]; then
ask_operation
2020-02-09 14:44:06 +01:00
else
case "${1}" in
2021-03-14 19:23:06 +01:00
"--install")
answer="i"
;;
2023-07-15 21:32:23 +02:00
"--update")
answer="u"
;;
2021-03-14 19:23:06 +01:00
"--remove")
answer="r"
;;
*)
answer="n"
;;
2020-02-09 14:44:06 +01:00
esac
fi
2021-09-19 16:50:32 +02:00
case $answer in
I|i)
tool_install ;;
2023-07-15 21:32:23 +02:00
U|u)
tool_update ;;
2021-09-19 16:50:32 +02:00
R|r)
tool_remove ;;
Q|q)
separator
echo ""
exit 0 ;;
*)
separator
echo -e "\nUnknown key, aborting ...\n"
exit 1 ;;
esac