tmux-plugins / tmux-continuum

Continuous saving of tmux environment. Automatic restore when tmux is started. Automatic tmux start when computer is turned on.
MIT License
3.26k stars 150 forks source link

Fix systemd unit install on clean system #106

Closed UbiquitousPhoton closed 2 years ago

UbiquitousPhoton commented 2 years ago

If the .config/systemd/user directory did not exist, it would not get created, as the mkdir command was inside the function systemd_unit_file() which is piped into the target file.

The shell determined that file could not be created first (as the directory did not exist), so never called the function at all.

bruno- commented 2 years ago

Thanks