This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- TLP 1.9.1 -------------------------------------------- | |
| +++ Configured Settings: | |
| defaults.conf L0006: TLP_ENABLE="1" | |
| defaults.conf L0007: TLP_WARN_LEVEL="3" | |
| defaults.conf L0008: TLP_MSG_COLORS="91 93 1 92" | |
| defaults.conf L0009: TLP_AUTO_SWITCH="2" | |
| defaults.conf L0010: TLP_PERSISTENT_DEFAULT="0" | |
| defaults.conf L0011: DISK_IDLE_SECS_ON_AC="0" | |
| defaults.conf L0012: DISK_IDLE_SECS_ON_BAT="2" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python3 | |
| from datetime import datetime, time, timezone | |
| from json import dumps, loads | |
| from os.path import expanduser | |
| from sys import stdin, stdout | |
| from zoneinfo import ZoneInfo | |
| def parse_due(dues: str) -> datetime: |