Skip to content

Commit 61ce7cd

Browse files
authored
Create README.md
1 parent abb3f49 commit 61ce7cd

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# TCD_COMMUNITY
2+
Daemon for controling Fan on Tuxedo notebook (replace TCD nodejs from tuxedo)
3+
4+
How to use it?
5+
6+
I) Compile or download compiled package from https://github.com/sleepingtux/TCD_COMMUNITY_PACKAGE
7+
8+
II) make a profile for your computer. Take a look of some exemple in https://github.com/sleepingtux/TCD_COMMUNITY_PACKAGE
9+
You should have a config file tcd_config.yaml near the binary.
10+
In this file, you should configure:
11+
Directory_Profile: "profile" ==> if the directory "profile" is near the binary or "/home/user/profile" if you put it on a directory "profile" in your home for exemple
12+
Profile_Battery: "pulse_battery.yaml" ==> name of the file that contain the profile for battery
13+
Profile_Power: "pulse_power.yaml" ==> name of the file that contain the profile for ac
14+
IF you got a dedicated gpu, dont forger to add a GPU Curve!!!
15+
16+
III) Install tuxedo-keyboard (it's needed to use it)
17+
18+
IV) you could test the settings with launching in root ./TCD_COMMUNITY
19+
TAKE A LOOKS OF THE TEMPERATURE!!!! Before forget it in background.
20+
21+
V) If all is ok, make a service to launch it on start.
22+
For exemple here is my systemd service:
23+
[unit]
24+
Description=TCD Community
25+
[Service]
26+
Type=simple
27+
WorkingDirectory=/opt/TCD_Community
28+
ExecStart=/opt/TCD_Community/TCD_COMMUNITY
29+
StandardOutput=syslog
30+
StandardError=syslog
31+
SyslogIdentifier=TCD_Community
32+
User=root
33+
Group=root
34+
[Install]
35+
WantedBy=multi-user.target

0 commit comments

Comments
 (0)