forked from NG-SD-Plugins/PowerTools
Update limits config to correctly detect OLED with newer firmware's CPU name
This commit is contained in:
parent
30ad80f031
commit
df71a619d9
4 changed files with 8 additions and 8 deletions
|
@ -20,7 +20,7 @@ impl Default for Base {
|
||||||
name: "Steam Deck Custom".to_owned(),
|
name: "Steam Deck Custom".to_owned(),
|
||||||
conditions: super::Conditions {
|
conditions: super::Conditions {
|
||||||
dmi: None,
|
dmi: None,
|
||||||
cpuinfo: Some("model name\t: AMD Custom APU 0405\n".to_owned()),
|
cpuinfo: Some("model name\t: AMD Custom APU (0405)|(0932)\n".to_owned()),
|
||||||
os: None,
|
os: None,
|
||||||
command: None,
|
command: None,
|
||||||
file_exists: Some("./pt_oc.json".into()),
|
file_exists: Some("./pt_oc.json".into()),
|
||||||
|
@ -35,7 +35,7 @@ impl Default for Base {
|
||||||
name: "Steam Deck".to_owned(),
|
name: "Steam Deck".to_owned(),
|
||||||
conditions: super::Conditions {
|
conditions: super::Conditions {
|
||||||
dmi: None,
|
dmi: None,
|
||||||
cpuinfo: Some("model name\t: AMD Custom APU 0405\n".to_owned()),
|
cpuinfo: Some("model name\t: AMD Custom APU (0405)|(0932)\n".to_owned()),
|
||||||
os: None,
|
os: None,
|
||||||
command: None,
|
command: None,
|
||||||
file_exists: None,
|
file_exists: None,
|
||||||
|
|
|
@ -20,7 +20,7 @@ impl Default for Base {
|
||||||
name: "Steam Deck Custom".to_owned(),
|
name: "Steam Deck Custom".to_owned(),
|
||||||
conditions: super::Conditions {
|
conditions: super::Conditions {
|
||||||
dmi: None,
|
dmi: None,
|
||||||
cpuinfo: Some("model name\t: AMD Custom APU 0405\n".to_owned()),
|
cpuinfo: Some("model name\t: AMD Custom APU (0405)|(0932)\n".to_owned()),
|
||||||
os: None,
|
os: None,
|
||||||
command: None,
|
command: None,
|
||||||
file_exists: Some("./limits_override.json".into()),
|
file_exists: Some("./limits_override.json".into()),
|
||||||
|
@ -44,7 +44,7 @@ impl Default for Base {
|
||||||
name: "Steam Deck".to_owned(),
|
name: "Steam Deck".to_owned(),
|
||||||
conditions: super::Conditions {
|
conditions: super::Conditions {
|
||||||
dmi: None,
|
dmi: None,
|
||||||
cpuinfo: Some("model name\t: AMD Custom APU 0405\n".to_owned()),
|
cpuinfo: Some("model name\t: AMD Custom APU (0405)|(0932)\n".to_owned()),
|
||||||
os: None,
|
os: None,
|
||||||
command: None,
|
command: None,
|
||||||
file_exists: None,
|
file_exists: None,
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"name": "Steam Deck Custom",
|
"name": "Steam Deck Custom",
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"dmi": null,
|
"dmi": null,
|
||||||
"cpuinfo": "model name\t: AMD Custom APU 0405\n",
|
"cpuinfo": "model name\t: AMD Custom APU (0405)|(0932)\n",
|
||||||
"os": null,
|
"os": null,
|
||||||
"command": null,
|
"command": null,
|
||||||
"file_exists": "./pt_oc.json"
|
"file_exists": "./pt_oc.json"
|
||||||
|
@ -28,7 +28,7 @@
|
||||||
"name": "Steam Deck",
|
"name": "Steam Deck",
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"dmi": null,
|
"dmi": null,
|
||||||
"cpuinfo": "model name\t: AMD Custom APU 0405\n",
|
"cpuinfo": "model name\t: AMD Custom APU (0405)|(0932)\n",
|
||||||
"os": null,
|
"os": null,
|
||||||
"command": null,
|
"command": null,
|
||||||
"file_exists": null
|
"file_exists": null
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"name": "Steam Deck Custom",
|
"name": "Steam Deck Custom",
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"dmi": null,
|
"dmi": null,
|
||||||
"cpuinfo": "model name\t: AMD Custom APU 0405\n",
|
"cpuinfo": "model name\t: AMD Custom APU (0405)|(0932)\n",
|
||||||
"os": null,
|
"os": null,
|
||||||
"command": null,
|
"command": null,
|
||||||
"file_exists": "./limits_override.json"
|
"file_exists": "./limits_override.json"
|
||||||
|
@ -169,7 +169,7 @@
|
||||||
"name": "Steam Deck",
|
"name": "Steam Deck",
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"dmi": null,
|
"dmi": null,
|
||||||
"cpuinfo": "model name\t: AMD Custom APU 0405\n",
|
"cpuinfo": "model name\t: AMD Custom APU (0405)|(0932)\n",
|
||||||
"os": null,
|
"os": null,
|
||||||
"command": null,
|
"command": null,
|
||||||
"file_exists": null
|
"file_exists": null
|
||||||
|
|
Loading…
Reference in a new issue