New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hook for floating class #452

Closed
djrmarques opened this Issue Jul 9, 2018 · 2 comments

Comments

Projects
None yet
3 participants
@djrmarques

djrmarques commented Jul 9, 2018

I am not sure this is the right place to ask this but how can I set up a hook so that every matplitlib graph window is foating?

I have been getting a weird behaviour, not on all plots, but on a specific plot of an heatmap using seaborn (40x40 matrix). I have been browsing the User Guide and so far have not been able to figure it out on my own.

Thanks, and if this is not the right place for this type of questions please redirect me to the correct one.

@dakra

This comment has been minimized.

Show comment
Hide comment
@dakra

dakra Jul 9, 2018

If you know the X class name (which you can get with xprop)
you can customize "stuff" with exwm-manage-configurations.

E.g. I have keepass windows floating with this:

(setq exwm-manage-configurations
        '(((equal exwm-class-name "keepassxc")
           floating t
           floating-mode-line nil
           width 0.6
           height 0.8)))

dakra commented Jul 9, 2018

If you know the X class name (which you can get with xprop)
you can customize "stuff" with exwm-manage-configurations.

E.g. I have keepass windows floating with this:

(setq exwm-manage-configurations
        '(((equal exwm-class-name "keepassxc")
           floating t
           floating-mode-line nil
           width 0.6
           height 0.8)))
@djrmarques

This comment has been minimized.

Show comment
Hide comment
@djrmarques

djrmarques Jul 9, 2018

This worked perfectly. I was having a hard time figuring out the functions to use.

Thanks!

djrmarques commented Jul 9, 2018

This worked perfectly. I was having a hard time figuring out the functions to use.

Thanks!

@ch11ng ch11ng closed this Jul 15, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment