c4b5182f04a89aabe6a06eeac4264783c26a9c40
[distro-setup] / i3-konsole
1 #!/bin/bash
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 change
7 # to a recommended GPL license.
8
9 # Copyright 2024 Ian Kelling
10
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
14
15 # http://www.apache.org/licenses/LICENSE-2.0
16
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.
22
23 if ! test "$BASH_VERSION"; then echo "error: shell is not bash" >&2; exit 1; fi
24 shopt -s inherit_errexit 2>/dev/null ||: # ignore fail in bash < 4.4
25 set -eE -o pipefail
26 trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" exit status: $?, PIPESTATUS: ${PIPESTATUS[*]}" >&2' ERR
27
28
29 if i3-msg -t get_tree | jq --stream -r 'select(.[1]|scalars!=null) | "\(.[0]|join(".")): \(.[1]|tojson)"' | grep 'marks.0: "term"$' &>/dev/null; then
30 h=$(i3-msg -t get_tree | jq -r ".. | select(.focused? == true) | .rect.height")
31
32 cur_workspace=$(i3-msg -t get_workspaces | jq -r '.[] | select(.focused? == true) | .name')
33
34 # h tests if we have a current focus, but that is just a random guess.
35 if [[ $cur_workspace == 2 && $h ]]; then
36 i3-msg "swap container with mark term; [con_mark=\"term\"] focus"
37 else
38 i3-msg '[con_mark="term"] move workspace current'
39 fi
40 else
41 i3-split-maybe
42 konsole
43 sleep 1
44 i3-msg "[workspace=__focused__ class=\"konsole\"] mark term"
45 fi