0

I am trying to set my i3 configuration file in order to autostart calcurse when I log in. I have added the line

exec --no-startup-id calcurse

but it doesn't work.

Fabiola
  • 48
  • 5
  • Have you tried forking the process from within a shell script? – Harrison Totty Nov 23 '20 at 17:24
  • You were very quick in deleting your storm tracks question. There is no other way to contact you so I am writing it here. Please mark the comment as "no longer needed" after you read it. It is quite possible that the file was generated by a different compiler,perhaps Intel. See https://stackoverflow.com/questions/8751185/unexpected-padding-in-a-fortran-unformatted-file Try the Intel compiler (now available for free) or set gfortran to use the Intel padding, if possible. – Vladimir F Героям слава Apr 07 '22 at 18:41

1 Answers1

1

If you want calcurse in an open window on startup, try exec --no-startup-id [xterm/urxvt/whatever_terminal_you_use] -e calcurse. (most terminal use -e to execute a command, check the terminal help if it does not work)

If you want calcurse to run in the background (to get event notifications, and you will still be able to access the interface by executing calcurse in a terminal), go with exec --no-startup-id calcurse --daemon

Dharman
  • 30,962
  • 25
  • 85
  • 135
Antoine
  • 166
  • 6