From 39dad733fdf46c0a201e3436949d1c177ad0c209 Mon Sep 17 00:00:00 2001 From: Daniel Napora Date: Thu, 27 Aug 2026 15:11:14 +0200 Subject: [PATCH] Kitty as default for quake terminal (F12) --- bin/mabox-terminal | 7 +++++++ bin/quake-term | 8 ++++++++ 2 files changed, 15 insertions(+) diff --git a/bin/mabox-terminal b/bin/mabox-terminal index 1963b3d..aef650a 100755 --- a/bin/mabox-terminal +++ b/bin/mabox-terminal @@ -4,6 +4,13 @@ # "Show-Hide" terminal wrapper for terminator for use with keybind eg. C-~ or F12. # Depenging on actual state it will start, show or hide terminal window. +. $HOME/.config/mabox/mabox.conf +if [ $quick_terminal == "kitty" ];then +jumpapp -m q-term +exit 0 +fi + + GEOMETRY_FILE="$HOME/.config/mabox/.quake-term" NAME="Quake Term" diff --git a/bin/quake-term b/bin/quake-term index 678bc10..dfb1b54 100755 --- a/bin/quake-term +++ b/bin/quake-term @@ -4,6 +4,14 @@ # "Show-Hide" terminal wrapper for terminator for use with keybind eg. C-~ or F12. # Depenging on actual state it will start, show or hide terminal window. +. $HOME/.config/mabox/mabox.conf +if [ $quick_terminal == "kitty" ];then +jumpapp -m q-term +exit 0 +fi + + + GEOMETRY_FILE="$HOME/.config/.quake-term" NAME="Quake Term"