Marty Oehme
e5414cbadf
Flashfocus did not start up correctly since it was not required for the `default.target` which is the only (?) valid target when systemd operates in user-mode. Instead of overwriting just part of the flashfocus service file, and subsequently having it enabled for default.target and a non-existent graphical.target user environment, we overwrite the whole file and set it to `default.target`. Additionally, the service should be restarted when it fails and slow down on its restart attempts (I kept 5 seconds for this one, since it is not as time critical as others -- no one cares if windows only flash 5 seconds after starting the machine.) Added (wishful) After components to many service units, in case I figure out one day how to make a useful target for the systemd user mode.
13 lines
479 B
Desktop File
13 lines
479 B
Desktop File
[Unit]
|
|
Description=Todo.md floating vim instance
|
|
After=display-manager.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
# workaround to allow relative executable invocation (i.e. current users' home dir)
|
|
ExecStart=/bin/bash -c 'alacritty --title "dropdown-todo" --class "Alacritty,scratchpad" -e nvim -c ":set nonumber norelativenumber noshowmode noruler laststatus=0 noshowcmd shortmess=F | :Limelight" %h/documents/records/todo.md'
|
|
Restart=always
|
|
RestartSec=2
|
|
|
|
[Install]
|
|
WantedBy=default.target
|