From a0d132ce9ccf149ddb8dcc2c5d8ef6e10e902cec Mon Sep 17 00:00:00 2001 From: Ward from fusion-voyager-3 Date: Tue, 27 Aug 2024 21:23:59 +0300 Subject: [PATCH] add files --- .github/release-nest-v3 | 2 +- debian/changelog | 5 - debian/control | 19 - debian/copyright | 0 debian/rules | 67 ---- .../debian/changelog | 5 + .../debian/compat | 1 + .../debian/control | 21 + .../debian/copyright | 374 ++++++++++++++++++ ...me-shell-extension-supergfxctl-gex.install | 1 + .../debian/postinst | 6 + .../debian/prerm | 7 + .../debian/rules | 6 + .../debian}/source/format | 0 .../supergfxctl-gex@asus-linux.org/README.md | 42 ++ .../extension.js | 364 +++++++++++++++++ .../ico/pci-card-symbolic.svg | 4 + .../metadata.json | 13 + main.sh | 8 +- 19 files changed, 848 insertions(+), 97 deletions(-) delete mode 100644 debian/changelog delete mode 100644 debian/control delete mode 100644 debian/copyright delete mode 100755 debian/rules create mode 100644 gnome-shell-extension-supergfxctl-gex/debian/changelog create mode 100644 gnome-shell-extension-supergfxctl-gex/debian/compat create mode 100644 gnome-shell-extension-supergfxctl-gex/debian/control create mode 100644 gnome-shell-extension-supergfxctl-gex/debian/copyright create mode 100644 gnome-shell-extension-supergfxctl-gex/debian/gnome-shell-extension-supergfxctl-gex.install create mode 100755 gnome-shell-extension-supergfxctl-gex/debian/postinst create mode 100755 gnome-shell-extension-supergfxctl-gex/debian/prerm create mode 100755 gnome-shell-extension-supergfxctl-gex/debian/rules rename {debian => gnome-shell-extension-supergfxctl-gex/debian}/source/format (100%) create mode 100644 gnome-shell-extension-supergfxctl-gex/usr/share/gnome-shell/extensions/supergfxctl-gex@asus-linux.org/README.md create mode 100644 gnome-shell-extension-supergfxctl-gex/usr/share/gnome-shell/extensions/supergfxctl-gex@asus-linux.org/extension.js create mode 100644 gnome-shell-extension-supergfxctl-gex/usr/share/gnome-shell/extensions/supergfxctl-gex@asus-linux.org/ico/pci-card-symbolic.svg create mode 100644 gnome-shell-extension-supergfxctl-gex/usr/share/gnome-shell/extensions/supergfxctl-gex@asus-linux.org/metadata.json diff --git a/.github/release-nest-v3 b/.github/release-nest-v3 index 56a6051..00750ed 100644 --- a/.github/release-nest-v3 +++ b/.github/release-nest-v3 @@ -1 +1 @@ -1 \ No newline at end of file +3 diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index 6d8d068..0000000 --- a/debian/changelog +++ /dev/null @@ -1,5 +0,0 @@ -upstream-name (1.0-101pika1) pika; urgency=medium - - * Initial release. (Closes: #nnnn) - - -- ferreo Wed, 18 Jan 2023 21:48:14 +0000 diff --git a/debian/control b/debian/control deleted file mode 100644 index 0bcd8e0..0000000 --- a/debian/control +++ /dev/null @@ -1,19 +0,0 @@ -Source: upstream-name -Section: admin -Priority: optional -Maintainer: name -Standards-Version: 4.6.1 -Build-Depends: debhelper-compat (= 13) -Rules-Requires-Root: no - -Package: pkgname1 -Architecture: linux-any -# Delete any of these lines if un-used -Depends: ${misc:Depends}, depends -Recommends: high priority optdepends -Conflicts: conflicts -Suggests: low priority optdepends -Breaks: also conflicts!? -Provides: provides -# -Description: pkgdesc diff --git a/debian/copyright b/debian/copyright deleted file mode 100644 index e69de29..0000000 diff --git a/debian/rules b/debian/rules deleted file mode 100755 index 64a084a..0000000 --- a/debian/rules +++ /dev/null @@ -1,67 +0,0 @@ -#! /usr/bin/make -f - -## See debhelper(7) (uncomment to enable). -## Output every command that modifies files on the build system. -export DH_VERBOSE = 1 -export PIKA_BUILD_ARCH = $(shell cat ../pika-build-arch) - -## === the chain of command === -## debuild runs a chain of dh functions in the following order: -## dh_testdir -## dh_clean -## dh_auto_clean -## dh_update_autotools_config -## dh_autoreconf -## dh_auto_configure -## dh_prep -## dh_build -## dh_auto_build -## dh_install -## dh_auto_install -## dh_installdocs -## dh_installchangelogs -## dh_perl -## dh_link -## dh_strip_nondeterminism -## dh_compress -## dh_fixperms -## dh_missing -## dh_dwz -## dh_strip -## dh_makeshlibs -## dh_shlibdeps -## dh_installdeb -## dh_gencontrol -## but you are most likely to only need to override the following: -## dh_clean -## dh_auto_configure -## dh_build -## dh_install - -## === End end of region === - -## === overriding dh functions === -## by default all dh functions will run a specific command based on the build system selected by "dh $@" -## if you have a makefile that does everything you need this is fine, -## but most likely you have no MakeFile and you want to add your own commands -## Note : overrides must be places above %: -## So here's a few examples: - -## overriding dh_clean to make it not delete rust vendor files: -#override_dh_clean: -# echo "disabled" - -## overriding dh_auto_configure to add custom configs: -#override_dh_auto_configure: -# $(srcdir)/configure -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_DATADIR=/usr/share -DCMAKE_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu -DBUILD_PLUGIN=OFF - -## overriding dh_install to install files to a package: -#override_dh_auto_configure: -# mkdir -p debian/pikman/usr/bin -# cp pikman debian/pikman/usr/bin/ - -## === End end of region === - -## This here will start the build: -%: - dh $@ diff --git a/gnome-shell-extension-supergfxctl-gex/debian/changelog b/gnome-shell-extension-supergfxctl-gex/debian/changelog new file mode 100644 index 0000000..94e10b2 --- /dev/null +++ b/gnome-shell-extension-supergfxctl-gex/debian/changelog @@ -0,0 +1,5 @@ +gnome-shell-extension-supergfxctl-gex (46.0-101pika2) pika; urgency=medium + + * Initial Creation + + -- Ward Nakchbandi Sat, 01 Oct 2022 14:50:00 +0200 diff --git a/gnome-shell-extension-supergfxctl-gex/debian/compat b/gnome-shell-extension-supergfxctl-gex/debian/compat new file mode 100644 index 0000000..f599e28 --- /dev/null +++ b/gnome-shell-extension-supergfxctl-gex/debian/compat @@ -0,0 +1 @@ +10 diff --git a/gnome-shell-extension-supergfxctl-gex/debian/control b/gnome-shell-extension-supergfxctl-gex/debian/control new file mode 100644 index 0000000..23a2443 --- /dev/null +++ b/gnome-shell-extension-supergfxctl-gex/debian/control @@ -0,0 +1,21 @@ +Source: gnome-shell-extension-supergfxctl-gex +Section: gnome +Priority: optional +Maintainer: Marco Trevisan +Build-Depends: debhelper (>= 10), + eslint , + libglib2.0-bin, + node-chalk , + node-js-yaml , + node-strip-ansi , + libgettextpo-dev, + gettext, + sassc +Standards-Version: 4.1.1 + +Package: gnome-shell-extension-supergfxctl-gex +Architecture: all +Depends: gnome-shell, + ${misc:Depends}, + ${shlibs:Depends}, +Description: Change the GTK3 theme to light/dark variant based on the system color scheme diff --git a/gnome-shell-extension-supergfxctl-gex/debian/copyright b/gnome-shell-extension-supergfxctl-gex/debian/copyright new file mode 100644 index 0000000..2f8ed18 --- /dev/null +++ b/gnome-shell-extension-supergfxctl-gex/debian/copyright @@ -0,0 +1,374 @@ +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. + diff --git a/gnome-shell-extension-supergfxctl-gex/debian/gnome-shell-extension-supergfxctl-gex.install b/gnome-shell-extension-supergfxctl-gex/debian/gnome-shell-extension-supergfxctl-gex.install new file mode 100644 index 0000000..09beaf7 --- /dev/null +++ b/gnome-shell-extension-supergfxctl-gex/debian/gnome-shell-extension-supergfxctl-gex.install @@ -0,0 +1 @@ +usr \ No newline at end of file diff --git a/gnome-shell-extension-supergfxctl-gex/debian/postinst b/gnome-shell-extension-supergfxctl-gex/debian/postinst new file mode 100755 index 0000000..eb57d96 --- /dev/null +++ b/gnome-shell-extension-supergfxctl-gex/debian/postinst @@ -0,0 +1,6 @@ +#!/bin/sh + +set -e + +glib-compile-schemas /usr/share/glib-2.0/schemas/ + diff --git a/gnome-shell-extension-supergfxctl-gex/debian/prerm b/gnome-shell-extension-supergfxctl-gex/debian/prerm new file mode 100755 index 0000000..15cb003 --- /dev/null +++ b/gnome-shell-extension-supergfxctl-gex/debian/prerm @@ -0,0 +1,7 @@ +#!/bin/sh + +set -e + +glib-compile-schemas /usr/share/glib-2.0/schemas/ + + diff --git a/gnome-shell-extension-supergfxctl-gex/debian/rules b/gnome-shell-extension-supergfxctl-gex/debian/rules new file mode 100755 index 0000000..6a60942 --- /dev/null +++ b/gnome-shell-extension-supergfxctl-gex/debian/rules @@ -0,0 +1,6 @@ +#!/usr/bin/make -f +export DH_VERBOSE = 1 +export DEB_BUILD_OPTIONS=nocheck + +%: + dh $@ \ No newline at end of file diff --git a/debian/source/format b/gnome-shell-extension-supergfxctl-gex/debian/source/format similarity index 100% rename from debian/source/format rename to gnome-shell-extension-supergfxctl-gex/debian/source/format diff --git a/gnome-shell-extension-supergfxctl-gex/usr/share/gnome-shell/extensions/supergfxctl-gex@asus-linux.org/README.md b/gnome-shell-extension-supergfxctl-gex/usr/share/gnome-shell/extensions/supergfxctl-gex@asus-linux.org/README.md new file mode 100644 index 0000000..24b6d85 --- /dev/null +++ b/gnome-shell-extension-supergfxctl-gex/usr/share/gnome-shell/extensions/supergfxctl-gex@asus-linux.org/README.md @@ -0,0 +1,42 @@ +# GPU-Supergfxctl-Switch + +GPU Profile switcher Gnome-Shell-Extension for ASUS laptops using Supergfxctl + +Currently tested on Arch / Gnome 46 / X11 + +Supergfxctl v5.2.x + +asusctl v6.0.x + +it supports all modes : +Integrated, Hybrid, VFIO, AsusEgpu, AsusMuxDgpu + +![screenshot example](./img/scr.png) + +## Use this only if you + +1. Have a laptop with Optimus Mux Switch and want to switch between iGPU and dGPU modes +2. want to monitor the dGPU status + +## Dependencies + +- [asusctl](https://gitlab.com/asus-linux/asusctl) +- [supergfxctl](https://gitlab.com/asus-linux/supergfxctl) + +## Installation + +- Install all the dependencies then you can choose manual method or install directly from gnome extension store + +### Gnome Extensions Store + +- Download the extension from the Store + + [EGO page](https://extensions.gnome.org/extension/7018/gpu-supergfxctl-switch/) + +### Manual + +- clone this repo + + ```bash + cp -rf GPU-Switcher-Supergfxctl ~/.local/share/gnome-shell/extensions/gpu-switcher-supergfxctl@chikobara.github.io + ``` diff --git a/gnome-shell-extension-supergfxctl-gex/usr/share/gnome-shell/extensions/supergfxctl-gex@asus-linux.org/extension.js b/gnome-shell-extension-supergfxctl-gex/usr/share/gnome-shell/extensions/supergfxctl-gex@asus-linux.org/extension.js new file mode 100644 index 0000000..96e565f --- /dev/null +++ b/gnome-shell-extension-supergfxctl-gex/usr/share/gnome-shell/extensions/supergfxctl-gex@asus-linux.org/extension.js @@ -0,0 +1,364 @@ +import Gio from "gi://Gio"; +import St from "gi://St"; +import GObject from "gi://GObject"; +import { + QuickMenuToggle, + SystemIndicator, +} from "resource:///org/gnome/shell/ui/quickSettings.js"; +import * as Main from "resource:///org/gnome/shell/ui/main.js"; +import * as Util from "resource:///org/gnome/shell/misc/util.js"; +import * as PopupMenu from "resource:///org/gnome/shell/ui/popupMenu.js"; +import { Extension } from "resource:///org/gnome/shell/extensions/extension.js"; + +const GPU_PROFILE_PARAMS = { + Integrated: { + name: "Integrated", + iconName: "video-single-display-symbolic", + command: "supergfxctl -m Integrated", + }, + Hybrid: { + name: "Hybrid", + iconName: "video-joined-displays-symbolic", + command: "supergfxctl -m Hybrid", + }, + Vfio: { + name: "Vfio", + iconName: "applications-engineering-symbolic", + command: "supergfxctl -m Vfio", + }, + AsusEgpu: { + name: "AsusEgpu", + iconName: "display-projector-symbolic", + command: "supergfxctl -m AsusEgpu", + }, + AsusMuxDgpu: { + name: "AsusMuxDgpu", + iconName: "drive-multidisk-symbolic", + command: "supergfxctl -m AsusMuxDgpu", + }, +}; + +const RETRY_DELAY = 1000; +const MAX_RETRIES = 3; + +const GpuProfilesToggle = GObject.registerClass( + { + Properties: { + "active-profile": GObject.ParamSpec.string( + "active-profile", + "Active Profile", + "The currently active GPU profile", + GObject.ParamFlags.READWRITE, + null + ), + }, + }, + class GpuProfilesToggle extends QuickMenuToggle { + _init(path) { + super._init({ title: "GPU Mode" }); + + this._profileItems = new Map(); + this._activeProfile = null; + this._retryTimeoutId = null; + this.connect("clicked", () => { + this._sync(); + }); + + this._path = path; + this._activeProfile = null; + + this.headerIcon = Gio.icon_new_for_string( + `${this._path}/ico/pci-card-symbolic.svg` + ); + this._profileSection = new PopupMenu.PopupMenuSection(); + this.menu.addMenuItem(this._profileSection); + this.menu.setHeader(this.headerIcon, "GPU Mode"); + this.menu.addMenuItem(new PopupMenu.PopupSeparatorMenuItem()); + + this._fetchSupportedProfiles(); + } + + _fetchSupportedProfiles() { + this._executeCommandWithRetry( + ["supergfxctl", "-s"], + (stdout) => { + const supportedProfiles = this._parseSupportedProfiles(stdout.trim()); + this._addProfileToggles(supportedProfiles); + this._fetchCurrentProfile(); + }, + () => { + console.error( + "Failed to fetch supported profiles after multiple attempts" + ); + this._addProfileToggles(Object.keys(GPU_PROFILE_PARAMS)); + this._fetchCurrentProfile(); + } + ); + } + + _parseSupportedProfiles(output) { + try { + return output.replace(/[\[\]\s]/g, "").split(","); + } catch (e) { + console.error(`Error parsing supported profiles: ${e.message}`); + return Object.keys(GPU_PROFILE_PARAMS); + } + } + + _fetchCurrentProfile() { + this._executeCommandWithRetry( + ["supergfxctl", "-g"], + (stdout) => { + if (stdout.trim() in GPU_PROFILE_PARAMS) { + this._setActiveProfile(stdout.trim()); + } else { + console.error(`Unknown profile returned: ${stdout.trim()}`); + this._setActiveProfile("Hybrid"); // Fallback to default + } + }, + () => { + console.error( + "Failed to fetch current profile after multiple attempts" + ); + this._setActiveProfile("Hybrid"); // Fallback to default + } + ); + } + + _executeCommandWithRetry(command, onSuccess, onFailure, retryCount = 0) { + try { + let proc = Gio.Subprocess.new( + command, + Gio.SubprocessFlags.STDOUT_PIPE | Gio.SubprocessFlags.STDERR_PIPE + ); + + proc.communicate_utf8_async(null, null, (proc, res) => { + try { + let [ok, stdout, stderr] = proc.communicate_utf8_finish(res); + if (ok) { + onSuccess(stdout); + } else if (retryCount < MAX_RETRIES) { + console.warn(`Command failed, retrying in ${RETRY_DELAY}ms...`); + this._retryTimeoutId = GLib.timeout_add( + GLib.PRIORITY_DEFAULT, + RETRY_DELAY, + () => { + this._executeCommandWithRetry( + command, + onSuccess, + onFailure, + retryCount + 1 + ); + this._retryTimeoutId = null; + return GLib.SOURCE_REMOVE; + } + ); + } else { + console.error( + `Command failed after ${MAX_RETRIES} attempts: ${stderr}` + ); + onFailure(); + } + } catch (e) { + console.error(`Error in command execution: ${e.message}`); + onFailure(); + } + }); + } catch (e) { + console.error(`Failed to execute command: ${e.message}`); + onFailure(); + } + } + + _clearRetryTimeout() { + if (this._retryTimeoutId !== null) { + GLib.source_remove(this._retryTimeoutId); + this._retryTimeoutId = null; + } + } + + _addProfileToggles(supportedProfiles) { + for (const profile of supportedProfiles) { + if (GPU_PROFILE_PARAMS[profile]) { + const params = GPU_PROFILE_PARAMS[profile]; + const item = new PopupMenu.PopupImageMenuItem( + params.name, + params.iconName + ); + item.connect("activate", () => { + console.log(`Activating profile: ${profile}`); + this._activateProfile(profile, params.command); + }); + this._profileItems.set(profile, item); + this._profileSection.addMenuItem(item); + } + } + } + + _activateProfile(profile, command) { + if (profile === this._activeProfile) { + console.log( + `Profile ${profile} is already active. Skipping activation.` + ); + return; + } + + if ( + (profile === "Vfio" && this._activeProfile === "Hybrid") || + (profile === "Hybrid" && this._activeProfile === "Vfio") + ) { + console.error( + "Direct switching between Vfio and Hybrid profiles is not supported." + ); + Main.notify( + "GPU Switcher", + "Direct switching between Vfio and Hybrid profiles is not supported. Please switch to Integrated first." + ); + return; + } + + this._executeCommandWithRetry( + ["sh", "-c", command], + () => { + console.log(`Profile ${profile} activated successfully`); + const previousProfile = this._activeProfile; + this._setActiveProfile(profile); + if ( + (previousProfile === "Integrated" && profile === "Hybrid") || + (previousProfile === "Hybrid" && profile === "Integrated") + ) { + Util.spawnCommandLine("gnome-session-quit --logout"); + } + }, + () => { + console.error( + `Failed to activate profile ${profile} after multiple attempts` + ); + Main.notify( + "GPU Switcher", + `Failed to switch to ${profile} profile. Please try again or check system logs.` + ); + } + ); + } + + _setActiveProfile(profile) { + if (GPU_PROFILE_PARAMS[profile]) { + console.log(`Setting active profile: ${profile}`); + this._activeProfile = profile; + this.notify("active-profile"); + this._sync(); + } else { + console.error(`Unknown profile: ${profile}`); + } + } + + get activeProfile() { + return this._activeProfile; + } + + _sync() { + console.log(`Synchronizing profile: ${this._activeProfile}`); + + const params = GPU_PROFILE_PARAMS[this._activeProfile]; + + if (!params) { + console.error( + `Active profile ${this._activeProfile} is not defined in GPU_PROFILE_PARAMS.` + ); + return; + } + + for (const [profile, item] of this._profileItems) { + item.setOrnament( + profile === this._activeProfile + ? PopupMenu.Ornament.CHECK + : PopupMenu.Ornament.NONE + ); + } + + this.set({ subtitle: params.name, iconName: params.iconName }); + + this.checked = this._activeProfile !== "Hybrid"; + } + } +); + +export const Indicator = GObject.registerClass( + class Indicator extends SystemIndicator { + _init(path) { + super._init(); + + this._indicator = this._addIndicator(); + this._indicator.icon_name = "video-display-symbolic"; // Default icon + this.indicatorIndex = 0; + + //create the quick settings toggle + this._toggle = new GpuProfilesToggle(path); + this.quickSettingsItems.push(this._toggle); + + this._toggle.connect( + "notify::active-profile", + this._updateIcon.bind(this) + ); + + // Try to insert the indicator at a specific index + this._insertIndicator(); + this._updateIcon(); + } + + _insertIndicator() { + const QuickSettingsMenu = Main.panel.statusArea.quickSettings; + if (QuickSettingsMenu && QuickSettingsMenu._indicators) { + QuickSettingsMenu._indicators.insert_child_at_index( + this, + this.indicatorIndex + ); + } else { + console.warn("Unable to insert indicator at specific index"); + } + } + + _updateIcon() { + const activeProfile = this._toggle.activeProfile; + if (activeProfile && GPU_PROFILE_PARAMS[activeProfile]) { + const params = GPU_PROFILE_PARAMS[activeProfile]; + this._indicator.icon_name = params.iconName; + this._indicator.visible = true; + } else { + this._indicator.icon_name = "video-display-symbolic"; // Default icon + this._indicator.visible = true; // Always keep it visible, change this if you want it to hide + } + // Log for debugging + console.log( + `Updated icon: ${this._indicator.icon_name}, Visible: ${this._indicator.visible}` + ); + } + } +); + +export default class GpuSwitcherExtension extends Extension { + enable() { + this._indicator = new Indicator(this.path); + Main.panel.statusArea.quickSettings.addExternalIndicator(this._indicator); + } + + disable() { + if (this._indicator) { + this._indicator.quickSettingsItems.forEach((item) => { + if (item instanceof GpuProfilesToggle) { + item._clearRetryTimeout(); + } + item.destroy(); + console.log("disabled"); + }); + // Remove the indicator from its parent + const parent = this._indicator.get_parent(); + if (parent) { + parent.remove_child(this._indicator); + } + this._indicator.destroy(); + this._indicator = null; + } + } +} diff --git a/gnome-shell-extension-supergfxctl-gex/usr/share/gnome-shell/extensions/supergfxctl-gex@asus-linux.org/ico/pci-card-symbolic.svg b/gnome-shell-extension-supergfxctl-gex/usr/share/gnome-shell/extensions/supergfxctl-gex@asus-linux.org/ico/pci-card-symbolic.svg new file mode 100644 index 0000000..3baae6a --- /dev/null +++ b/gnome-shell-extension-supergfxctl-gex/usr/share/gnome-shell/extensions/supergfxctl-gex@asus-linux.org/ico/pci-card-symbolic.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gnome-shell-extension-supergfxctl-gex/usr/share/gnome-shell/extensions/supergfxctl-gex@asus-linux.org/metadata.json b/gnome-shell-extension-supergfxctl-gex/usr/share/gnome-shell/extensions/supergfxctl-gex@asus-linux.org/metadata.json new file mode 100644 index 0000000..d94bebd --- /dev/null +++ b/gnome-shell-extension-supergfxctl-gex/usr/share/gnome-shell/extensions/supergfxctl-gex@asus-linux.org/metadata.json @@ -0,0 +1,13 @@ +{ + "_generated": "Generated by SweetTooth, do not edit", + "description": "supergfxctl-gex is a gnome extension for supergfxctl (https://gitlab.com/asus-linux/supergfxctl).", + "name": "supergfxctl-gex", + "settings-schema": "org.gnome.shell.extensions.supergfxctl-gex", + "shell-version": [ + "46" + ], + "url": "https://gitlab.com/asus-linux/supergfxctl-gex", + "uuid": "supergfxctl-gex@asus-linux.org", + "uuid-dev": "supergfxctl-gex-dev@asus-linux.org", + "version": 33 +} diff --git a/main.sh b/main.sh index d80ca48..1c807cf 100755 --- a/main.sh +++ b/main.sh @@ -6,15 +6,13 @@ set -e echo "$PIKA_BUILD_ARCH" > pika-build-arch -VERSION="1.0" +VERSION="46.0" # Clone Upstream -mkdir -p ./src-pkg-name -cp -rvf ./debian ./src-pkg-name/ -cd ./src-pkg-name/ +cd ./gnome-shell-extension-supergfxctl-gex/ # Get build deps -LOGNAME=root dh_make --createorig -y -l -p src-pkg-name_"$VERSION" || echo "dh-make: Ignoring Last Error" +LOGNAME=root dh_make --createorig -y -l -p gnome-shell-extension-supergfxctl-gex_"$VERSION" || echo "dh-make: Ignoring Last Error" apt-get build-dep ./ -y # Build package