Septagram
Septagram

Reputation: 9795

Using xdotool or similar tool, how can I change window order?

I need to tell window A to be displayed above window B, but below window C. How can I do that?

Upvotes: 0

Views: 718

Answers (1)

Andrey Sidorov
Andrey Sidorov

Reputation: 25466

using xdotool (and changing stacking for C):

xdotool windowraise window_id A
xdotool windowraise window_id C

Upvotes: 1

Related Questions