Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. Mozilla ніколи не просить вас зателефонувати, надіслати номер телефону у повідомленні або поділитися з кимось особистими даними. Будь ласка, повідомте про підозрілі дії за допомогою меню “Повідомити про зловживання”

Learn More

Ця тема перенесена в архів. Якщо вам потрібна допомога, запитайте.

Flag for starting Thunderbird minimised (Flatpak)

  • 1 відповідь
  • 0 мають цю проблему
  • 2 перегляди
  • Остання відповідь від Medhasree Suram

more options

Hi. Is there a flag for the flatpak command that will start Thunderbird minimized?

Thanks :)

Hi. Is there a flag for the flatpak command that will start Thunderbird minimized? Thanks :)

Усі відповіді (1)

more options

Sure, I can help you with that! Starting Thunderbird minimized with a Flatpak command is a bit tricky, but there's a workaround you can try. Unfortunately, there isn't a direct flag for this in the command. However, you can create a small script that runs Thunderbird and then minimizes it. Here's how:

Open a text editor and paste the following lines: bash Copy code

  1. !/bin/bash

thunderbird & sleep 5 wmctrl -r Thunderbird -b add,hidden Save the file with a ".sh" extension, for example, "start-thunderbird.sh".

Open your terminal, navigate to the location of the script, and make it executable using the command:

bash Copy code chmod +x start-thunderbird.sh Now, whenever you run this script, Thunderbird will start and then minimize after a few seconds. I hope this helps you achieve what you're looking for. Give it a try and let me know if you have any questions or need further assistance!