Changed default log file path from /logs to /.logs

This commit is contained in:
Vico 2025-04-11 18:39:23 +02:00
parent 3cdb3b7820
commit fa768380c4
2 changed files with 3 additions and 1 deletions

View File

@ -48,6 +48,8 @@ search_engine: https://duckduckgo.com/?q=
youtube_search: https://www.youtube.com/results?search_query=
```
Info: file paths are relative to your home directory.
## 🧑‍💻 Usage
- 💬 **Regular Commands:** Type any shell command and hit Enter to execute it.

View File

@ -11,7 +11,7 @@ mkdir -p "$CONFIG_DIR"
if [ ! -f "$CONFIG_FILE" ]; then
cat > "$CONFIG_FILE" << EOF
# Quick Launcher Configuration
log_file: /logs/shrtrun.log
log_file: /.logs/shrtrun.log
search_engine: https://duckduckgo.com/?q=
youtube_search: https://www.youtube.com/results?search_query=
EOF