2 # I, Ian Kelling, follow the GNU license recommendations at
3 # https://www.gnu.org/licenses/license-recommendations.en.html. They
4 # recommend that small programs, < 300 lines, be licensed under the
5 # Apache License 2.0. This file contains or is part of one or more small
6 # programs. If a small program grows beyond 300 lines, I plan to switch
9 # Copyright 2024 Ian Kelling
11 # Licensed under the Apache License, Version 2.0 (the "License");
12 # you may not use this file except in compliance with the License.
13 # You may obtain a copy of the License at
15 # http://www.apache.org/licenses/LICENSE-2.0
17 # Unless required by applicable law or agreed to in writing, software
18 # distributed under the License is distributed on an "AS IS" BASIS,
19 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 # See the License for the specific language governing permissions and
21 # limitations under the License.
24 set -e; .
/usr
/local
/lib
/bash-bear
; set +e
26 # We use this along with
27 # /a/opt/i3-alternating-layout/alternating_layouts.py to anticipate when
28 # we want to split/tab windows. There are 2 options of when to do it:
29 # just after a window is created, or just before a window is
32 # *Doing it after a window is created allows you to move a window into
33 # the split that only has 1 window, whereas the other way doesn't. For
34 # my use cases, I think I don't really want to move it into the split if
35 # it is a tabbed split.
37 # *Doing it just before a windows is created, you need to
38 # call this script, which means wrapping launch of a program, which I
39 # have no way to do for all cases, I just do it for the common programs
40 # I have bound to keys in i3.
42 # * Doing it after a window is created also leaves that split behind if
43 # * the window is closed. I partially deal with that below.
45 # I have a keybind which disables both, it runs /b/ds/i3-auto-layout-toggle
47 if [[ -e /tmp
/iank-i3-no-auto
]]; then
54 i3-msg
-t get_workspaces | jq
".[]| select(.focused==true) | .rect | .width, .height" >$tmp
56 { read -r screen_width
; read -r screen_height
; } <$tmp
58 i3-msg
-t get_tree | jq
-r ".. | select(.focused? == true).rect | .width, .height" >$tmp
60 half_w
=$
(( screen_width
/ 2 + 100 ))
61 half_h
=$
(( screen_height
/ 2 + 100 ))
64 { read -r w
; read -r h
; } <$tmp
67 if (( screen_width
< 1920 )); then
68 # haven't considered this case yet
72 if (( w
< half_w
&& h
< half_h
)); then
73 i3-msg
"split vertical, layout tabbed"
74 elif (( w
== screen_width
)); then
76 # if we had 2 windows on screen, made them vertical splits, then
77 # closed one, it stays vertical split, but we want it horizontal at
78 # that point. So, make it horizontal here.
79 i3-msg
"split horizontal"