Skip to content

Commit

Permalink
Fix Xapp backend selection on Cinnamon
Browse files Browse the repository at this point in the history
  • Loading branch information
bibelin committed Oct 1, 2024
1 parent f9b804f commit 86bf966
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taskbar.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func Connect(desktopName string, xid int) (*Taskbar, error) {
backend = xappBackend
} else if session == waylandSession {
backend = unityBackend
} else if os.Getenv("XDG_CURRENT_DESKTOP") == "Cinnamon" {
} else if os.Getenv("XDG_CURRENT_DESKTOP") == "X-Cinnamon" {
backend = xappBackend
} else {
backend = unityBackend
Expand Down

0 comments on commit 86bf966

Please sign in to comment.