1
1
Fork 0

Compare commits

...

2 commits

Author SHA1 Message Date
0a8457aa9d
myork: lower max cpu on battery
Signed-off-by: Myned <dev@bjork.tech>
2024-10-22 07:46:18 -05:00
8508fb4f24
clipse: fix image display
Signed-off-by: Myned <dev@bjork.tech>
2024-10-22 07:46:18 -05:00
2 changed files with 9 additions and 3 deletions

View file

@ -24,7 +24,7 @@ in {
fw-fanctrl.enable = true; fw-fanctrl.enable = true;
auto-cpufreq.max = { auto-cpufreq.max = {
battery = 3; # GHz battery = 2.5; # GHz
#// charger = 3.5; # GHz #// charger = 3.5; # GHz
}; };
}; };

View file

@ -22,11 +22,17 @@ in {
home.file.".config/clipse/config.json".text = '' home.file.".config/clipse/config.json".text = ''
{ {
"historyFile": "clipboard_history.json", "historyFile": "clipboard_history.json",
"maxHistory": 100, "maxHistory": 50,
"allowDuplicates": false, "allowDuplicates": false,
"themeFile": "custom_theme.json", "themeFile": "custom_theme.json",
"tempDir": "tmp_files", "tempDir": "tmp_files",
"logFile": "clipse.log" "logFile": "clipse.log",
"imageDisplay": {
"type": "kitty",
"scaleX": 9,
"scaleY": 9,
"heightCut": 2
}
} }
''; '';
}; };