• eldavi@lemmy.ml
    link
    fedilink
    English
    arrow-up
    8
    ·
    1 month ago

    surround it by nohup and put & at the end of the command.

    it would be better to run the command using the key combo of alt + f2 and then putting the command there instead of using a terminal window so that you don’t have to bother with nohup.

  • moonpiedumplings@programming.dev
    link
    fedilink
    arrow-up
    1
    ·
    1 month ago

    If you use kde, you can search for “profile manager”, and it will show up, and can be launched from the app menu.

    At least works for me. Before this was added, the KDE search/app menu also lets you run commands directly, so I would just run firefox -p in there. No need for a terminal.

  • yeh74fjic8e5we@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    1 month ago

    In the terminal session you launched firefox from:

    Ctrl-Z  # Temporarily suspend process
    bg      # Put that process into the background
    exit    # Cleanly close the terminal session
    

    Or launch Firefox (or whatever application) with a ’&’ at the end to put it in the background from the start.