Disable border only for splash screens
Currently windows with _NET_WM_WINDOW_TYPE_SPLASH
are considered floating. I would like to disable border for those windows, without disabling the border for other floating windows. How can I do that?
Currently windows with _NET_WM_WINDOW_TYPE_SPLASH
are considered floating. I would like to disable border for those windows, without disabling the border for other floating windows. How can I do that?
The command to change the border to a thin line around the window is border 1pixel
for_window [criteria] action runs action on all new windows that meet criteria
example for_window [window_role="^splash$"] border 1pixel
may do it if not the entire list of criteria is available at
http://i3wm.org/docs/userguide.html#c...
to find out the criteria for a given window you may run xprop from the terminal and click on said window and examine the output. This will tell you what criteria you want to match on. Note ^foo means starts with foo and foo$ means ends in foo.
Asked: 2014-09-15 05:17:31 +0000
Seen: 104 times
Last updated: Sep 19 '14