16 lines
511 B
Desktop File
16 lines
511 B
Desktop File
[Unit]
|
|
Description=Tmux server
|
|
Requires=default.target
|
|
After=default.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
ExecStart=/usr/bin/tmux -D -L %u
|
|
ExecStop=/usr/bin/tmux -L %u kill-server
|
|
ExecReload=/usr/bin/tmux -L %u source-file %h/.config/tmux/tmux.conf
|
|
Restart=on-failure
|
|
ExecStartPost=/usr/bin/tmux -L %u new-session -d -s landing 'sh -c "tmux rename-window -t 1 landing; tmux set-option remain-on-exit on; figlet -w 200 -c -f big Landing; trap : INT; while true; do sleep 3600; done"'
|
|
|
|
[Install]
|
|
WantedBy=default.target
|