This commit is contained in:
Hui
2024-03-24 13:25:38 +08:00
parent b63fa00bd9
commit fa8c6727cf
103 changed files with 2840 additions and 1341 deletions

View File

@@ -0,0 +1,41 @@
"custom/gpuinfo": {
"exec": " ${ScrDir}/gpuinfo.sh",
"return-type": "json",
"format": "{}",
"rotate": ${r_deg},
"interval": 5, // once every 5 seconds
"tooltip": true,
"max-length": 1000,
"on-click": "${ScrDir}/gpuinfo.sh --toggle",
},
"custom/gpuinfo#nvidia": {
"exec": " ${ScrDir}/gpuinfo.sh --use nvidia ",
"return-type": "json",
"format": "{}",
"rotate": ${r_deg},
"interval": 5, // once every 5 seconds
"tooltip": true,
"max-length": 1000,
},
"custom/gpuinfo#amd": {
"exec": " ${ScrDir}/gpuinfo.sh --use amd ",
"return-type": "json",
"format": "{}",
"rotate": ${r_deg},
"interval": 5, // once every 5 seconds
"tooltip": true,
"max-length": 1000,
},
"custom/gpuinfo#intel": {
"exec": " ${ScrDir}/gpuinfo.sh --use intel ",
"return-type": "json",
"format": "{}",
"rotate": ${r_deg},
"interval": 5, // once every 5 seconds
"tooltip": true,
"max-length": 1000,
},