Skip to content

Commit

Permalink
Readme and new screenshot
Browse files Browse the repository at this point in the history
  • Loading branch information
seerge committed Feb 22, 2023
1 parent 44c3d9f commit 41d92d7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Profiles are **same** as in Armory Crate, including default fan curves
1. Eco mode : only low power iGPU (Radeon 680u) enabled, iGPU drives built in display
2. Standard mode (Windows Hybrid) : iGPU and dGPU (Radeon 6700s/6800s) enabled, iGPU drives built in display
3. Ultimate mode: iGPU and dGPU enabled, but dGPU drives built in display
4. **Custom fan profiles** for any mode!

## Extras

Expand All @@ -33,17 +34,16 @@ Profiles are **same** as in Armory Crate, including default fan curves

## Things still missing

1. Custom fan profiles
2. Anime matrix control
1. Anime matrix control

## How to install

1. Download latest release from https://github.com/seerge/g14-helper/releases
2. Unzip to a folder of your choice
3. Run **GHelper.exe**

Note: Uses low level ASUS WMI commands to do switching and doens't require Armory Crate to be isntalled at all.
Therefore requires Administrator priveledges on Windows to run.
Note: Uses low level ASUS ACPI commands to do switching and doens't require Armory Crate to be isntalled at all.
Doesn't require administrator privileges to run (anymore)!

I don`t have Microsoft certificate to sign app yet, so if you set a warning from Windows Defender on launch (Windows Protected your PC), click More Info -> Run anyway.

Expand Down
11 changes: 11 additions & 0 deletions Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@ public class Startup
public static bool IsScheduled()
{
TaskService taskService = new TaskService();

// cleanup of OLD autorun
try
{
taskService.RootFolder.DeleteTask("GSharpHelper");
} catch
{
Debug.WriteLine("Not running as admin");
}


return (taskService.RootFolder.AllTasks.Any(t => t.Name == taskName));
}

Expand Down
Binary file modified screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 41d92d7

Please sign in to comment.