Last active
November 23, 2018 21:07
-
-
Save vishnumad/02277c5b7d2e44dcf302833db06fd87d to your computer and use it in GitHub Desktop.
Plasma integration for i3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # >>> Plasma Integration <<< | |
| # Try to kill the wallpaper set by Plasma (it takes up the entire workspace | |
| # and hides everythiing) | |
| exec --no-startup-id wmctrl -c Plasma | |
| for_window [title="Desktop — Plasma"] kill; floating enable; border none | |
| # Avoid tiling popups, dropdown windows from plasma | |
| for_window [class="plasmashell"] floating enable | |
| for_window [class="Plasma"] floating enable | |
| for_window [class="krunner"] floating enable | |
| for_window [class="Kmix"] floating enable | |
| for_window [class="Klipper"] floating enable | |
| for_window [class="Plasmoidviewer"] floating enable | |
| # >>> Window Rules <<< | |
| # >>> Avoid tiling for non-Plasma stuff <<< | |
| for_window [window_role="pop-up"] floating enable | |
| for_window [window_role="bubble"] floating enable | |
| for_window [window_role="task_dialog"] floating enable | |
| for_window [window_role="Preferences"] floating enable | |
| for_window [window_role="About"] floating enable | |
| for_window [window_type="dialog"] floating enable | |
| for_window [window_type="menu"] floating enable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment