blob: 4587ff96b0eb41cc06c13a77ebe29e6cb0a47173 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#! /usr/bin/env sh
# NOTE: Keep this in sync with the file from `base_init.sh` <2025-02-03>
RIVER_LOG_FILE="$HOME/.local/share/river/log"
[ -d "$(dirname "$RIVER_LOG_FILE")" ] || mkdir --parents "$(dirname "$RIVER_LOG_FILE")"
exec river -log-level info >"$RIVER_LOG_FILE" 2>&1
# vim: ft=sh
|