plank bar stays behind the menu bar

Asked by Carlos Albert

Hello,

I'm using Linux Mint 22.1 Cinnamon, and when I first installed Plank, it mounted above the menu bar, perfectly. But when I restart the computer, the Plank bar stays behind the menu bar, and I can't use it.
How can I get the Plank bar to appear above the menu bar?

Thanks,

Carlos

Question information

Language:
English Edit question
Status:
Solved
For:
Plank Edit question
Assignee:
No assignee Edit question
Solved by:
Carlos Albert
Solved:
Last query:
Last reply:
Revision history for this message
ileads (ileads) said (last edit ):
#1

Hi Carlos,

This issue with **Plank** on **Linux Mint 22.1 Cinnamon** where it starts **behind the menu bar (panel)** after a reboot is usually caused by how desktop elements load at startup — specifically, Plank starting **before** the Cinnamon panel finishes initializing.

Here's how you can fix this:

---

### ✅ **Solution: Delay Plank’s Startup**

You need to **delay Plank's autostart** slightly so it loads **after** the Cinnamon panel.

#### Steps:

1. Open **Startup Applications** (`Menu` → search for `Startup Applications` or `Startup Programs`).

2. If Plank is listed there:

   * Select it.
   * Click **Edit**.
   * Add a delay to the command:

     ```bash
     bash -c "sleep 5 && plank"
     ```
   * (You can increase the `5` to `10` seconds if needed.)

3. If Plank is **not listed**:

   * Click **Add**.
   * Name: `Plank (Delayed)`
   * Command:

     ```bash
     bash -c "sleep 5 && plank"
     ```
   * Comment: (optional) `Start Plank after Cinnamon panel`
   * Save it.

---

### 🔁 Optional: Disable the original autostart (if Plank autostarts twice)

Plank may have an autostart file at:

```
~/.config/autostart/plank.desktop
```

If so, you can either:

* Delete it, or
* Edit the file and replace the `Exec` line with:

  ```ini
  Exec=bash -c "sleep 5 && plank"
  ```

---

### 🧪 Test it:

Reboot your system and check if Plank now loads correctly **on top of the panel**.

---

Let me know if this doesn't work or if you want to explore alternative docks or Cinnamon panel tweaks.
https://ileads.com/mortgage-solutions/

Revision history for this message
ileads (ileads) said :
#2
Revision history for this message
Carlos Albert (metrocarlo) said :
#3

Hello,

I tried the Plank startup delay option and it worked perfectly (3-second delay).

Thank you very much!

Carlos