diff --git a/CommonHelpers/GlobalConfig.cs b/CommonHelpers/GlobalConfig.cs index 960ab61..9e1179b 100644 --- a/CommonHelpers/GlobalConfig.cs +++ b/CommonHelpers/GlobalConfig.cs @@ -17,6 +17,7 @@ namespace CommonHelpers public enum OverlayMode : uint { FPS = 10032, + FPSWithBattery, Minimal, Detail, Full diff --git a/PerformanceOverlay/Overlays.cs b/PerformanceOverlay/Overlays.cs index 9af30ae..9e98ca5 100644 --- a/PerformanceOverlay/Overlays.cs +++ b/PerformanceOverlay/Overlays.cs @@ -90,7 +90,16 @@ namespace PerformanceOverlay { Nested = { // Simple just FPS - new Entry(" FPS") { Include = { OverlayMode.FPS } }, + new Entry { + Nested = + { + new Entry(" FPS"), + new Entry("{BATT_%} %") { Include = { OverlayMode.FPSWithBattery }, IgnoreMissing = true }, + new Entry("{BATT_W} W") { Include = { OverlayMode.FPSWithBattery }, IgnoreMissing = true }, + new Entry("{BATT_MIN} min") { Include = { OverlayMode.FPSWithBattery }, IgnoreMissing = true } + }, + Include = { OverlayMode.FPS, OverlayMode.FPSWithBattery } + }, // Minimal and Detail new Entry { diff --git a/README.md b/README.md index e6776bf..0194e14 100644 --- a/README.md +++ b/README.md @@ -54,21 +54,23 @@ It currently registers two global hotkeys: - **F11** - enable performance overlay - **Shift+F11** - cycle to next performance overlay (and enable it) -There are 4 modes of presentation: +There are 5 modes of presentation: ### 2.1. FPS -### 2.2. Minimal +### 2.2. FPS with Battery + +### 2.3. Minimal -### 2.3. Detail +### 2.4. Detail -### 2.4. Full +### 2.5. Full @@ -84,7 +86,10 @@ There are currently 4 configurable settings: - Volume - Brightness - Refresh Rate +- FPS Limit (requires RTSS) - TDP +- OSD / OSDMode (requires PerformanceOverlay running) +- Fan (requires FanControl running) diff --git a/RELEASE.md b/RELEASE.md index 561a22e..ee1ae4f 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -6,5 +6,7 @@ - Add `0` brightness - Support any battery model - Add battery remaining +- Add FPSWithBattery overlay +- Add FPS Limit using RTSS If you found it useful buy me [Ko-fi](https://ko-fi.com/ayufan).