How to make tkinter Window floating in i3 windowmanager

J. Doe

I'm just playing around with tkinter in python a little, but have some "troubles" with my i3 (tiling) windowmanager.

I want to create a floating window for entering a value (similar to a "Open File" Dialog). This has to be possible, since Gimp for example works with floating windows in i3, too. Of course I'm not sure if it's possible with tkinter.

Does someone happen to know the problem and found the solution? I guess there's got to be some sort of flag to set on the tkinter.Tk() widget.

Dane Johnson

You can tell i3wm that this is a dialog by setting your root element's type attribute to dialog

from Tkinter import Tk
root = Tk()
root.attributes('-type', 'dialog')
root.mainloop()

i3 will open the window automatically in floating mode instead of tiling.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How do you make changes from a new windowManager window?

From Dev

How to make a Tkinter window not resizable?

From Dev

How do I make this button quit the parent window in tkinter?

From Dev

Awesome WM : How can I write a rule to make a window appear floating under the mouse?

From Dev

How to make a window fullscreen in a secondary display with tkinter?

From Dev

Tkinter - How can I make a button can create new window and close the main window

From Dev

VB6 How to Make a Floating Window TOP Most

From Dev

How to use i3 window manager in fedora with gnome

From Dev

How to get rid of ubuntu Desktop window in i3 wm?

From Dev

How to add volume visual feedback to i3 window manager?

From Dev

How can I make media keys work with i3?

From Dev

How to make terminal in i3 transparent? (preferences tab not working)

From Dev

How do I make floating button clickable

From Dev

TkInter: how can I make objects appear on my second window rather than the first?

From Dev

How can I make touches fall through a layout in the WindowManager, but allow a button in the layout to be interacted with?

From Dev

Can't make media keys work on i3 window manager

From Dev

How to make floating slider?

From Dev

How to make click events pass though a tkinter window?

From Dev

How to make state of window idle until button is pressed in python tkinter?

From Dev

How to make button command to open image inside window in tkinter?

From Dev

how to make only 1 new window when a button is clicked? tkinter

From Dev

How do you make an animation with the title of a Tkinter window?

From Dev

Logic within python and Tkinter: how to make a window run endlessly

From Dev

Make tkinter Window appear in the taskbar

From Dev

How do I scale i3 window manager for my HiDPI display?

From Dev

How can I set what i3 returns as the window manager name?

From Dev

How can I issue a command in i3 and then return to the same window?

From Dev

TKinter: How can I set the window icon of a child window (Toplevel)

From Dev

How do you implement layout with the autostarting of applications in the i3 window manager?

Related Related

  1. 1

    How do you make changes from a new windowManager window?

  2. 2

    How to make a Tkinter window not resizable?

  3. 3

    How do I make this button quit the parent window in tkinter?

  4. 4

    Awesome WM : How can I write a rule to make a window appear floating under the mouse?

  5. 5

    How to make a window fullscreen in a secondary display with tkinter?

  6. 6

    Tkinter - How can I make a button can create new window and close the main window

  7. 7

    VB6 How to Make a Floating Window TOP Most

  8. 8

    How to use i3 window manager in fedora with gnome

  9. 9

    How to get rid of ubuntu Desktop window in i3 wm?

  10. 10

    How to add volume visual feedback to i3 window manager?

  11. 11

    How can I make media keys work with i3?

  12. 12

    How to make terminal in i3 transparent? (preferences tab not working)

  13. 13

    How do I make floating button clickable

  14. 14

    TkInter: how can I make objects appear on my second window rather than the first?

  15. 15

    How can I make touches fall through a layout in the WindowManager, but allow a button in the layout to be interacted with?

  16. 16

    Can't make media keys work on i3 window manager

  17. 17

    How to make floating slider?

  18. 18

    How to make click events pass though a tkinter window?

  19. 19

    How to make state of window idle until button is pressed in python tkinter?

  20. 20

    How to make button command to open image inside window in tkinter?

  21. 21

    how to make only 1 new window when a button is clicked? tkinter

  22. 22

    How do you make an animation with the title of a Tkinter window?

  23. 23

    Logic within python and Tkinter: how to make a window run endlessly

  24. 24

    Make tkinter Window appear in the taskbar

  25. 25

    How do I scale i3 window manager for my HiDPI display?

  26. 26

    How can I set what i3 returns as the window manager name?

  27. 27

    How can I issue a command in i3 and then return to the same window?

  28. 28

    TKinter: How can I set the window icon of a child window (Toplevel)

  29. 29

    How do you implement layout with the autostarting of applications in the i3 window manager?

HotTag

Archive