From 75d844a06c9b4badad80ead160023f7acebfb99f Mon Sep 17 00:00:00 2001 From: developomp Date: Sat, 25 Sep 2021 11:59:34 +0900 Subject: [PATCH] added cpupower setup, removed some gnome extensions, and replaced webtorrent client with torrential --- setup.sh | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/setup.sh b/setup.sh index 147d287..c12f1ac 100755 --- a/setup.sh +++ b/setup.sh @@ -152,10 +152,16 @@ setup_cpu_undervolting() { sudo systemctl enable intel-undervolt } +setup_cpupower_gui() { + package_install \ + cpupower-gui \ + +} + setup_dconf() { - # todo: freon GPU, decimal, and unit + : # must be done after install to make sure configs are not overwritten - dconf load / < $SCRIPT_DIR/dconf.conf + # dconf load / < $SCRIPT_DIR/dconf.conf } setup_deno() { @@ -317,11 +323,9 @@ setup_gnome() { 36 # lock-keys 131 # touchpad-indicator 355 # status-area-horizontal-spacing - 750 # openweather 800 # remove-dropdown-arrows 841 # freon 906 # sound-output-device-chooser - 945 # cpu-power-manager 2741 # remove-alttab-delay-v2 4000 # babar ) @@ -517,9 +521,9 @@ setup_timeshift() { } -setup_webtorrent_desktop() { +setup_torrential() { package_install \ - webtorrent-desktop-bin \ + torrential \ } @@ -680,7 +684,7 @@ options=( "osu" "" off "piper" "" off "rust" "" off - "webtorrent_desktop" "" off + "torrential" "" off "unity" "" off "vim" "" off "virtualbox" "" off @@ -735,8 +739,8 @@ for choice in $choices; do setup_piper;; "rust") setup_rust;; - "webtorrent_desktop") - setup_webtorrent_desktop;; + "torrential") + setup_torrential;; "unity") setup_unity;; "vim")