Compare commits

..

No commits in common. "a4eb8ae75da9c96e3d9b209f574bcb3252dc058d" and "296bd3af80d7e527189db21b72b6004e143eb254" have entirely different histories.

6 changed files with 6 additions and 131 deletions

View File

@ -1,8 +1,8 @@
{
"lastChangelogVersion": "0.82.1",
"lastChangelogVersion": "0.80.10",
"theme": "dark",
"defaultProvider": "alibaba-code-plan",
"defaultModel": "qwen3.8-max-preview",
"defaultProvider": "kimi-coding",
"defaultModel": "k3",
"showHardwareCursor": false,
"defaultThinkingLevel": "high",
"quietStartup": true,
@ -19,4 +19,4 @@
"npm:pi-powerline-footer",
"npm:pi-webaio"
]
}
}

View File

@ -46,19 +46,7 @@
}
:main [
{:des "Trackball: hold forward (button5) + roll -> scroll; tap = forward"
:rules [{:type :basic
:from {:pointing_button :button5 :modifiers {:optional [:any]}}
:to [{:set_variable {:name "ball-scroll" :value 1 :key_up_value 0}}]
:to_if_alone [{:pointing_button :button5}]
:conditions [{:type :device_if :identifiers [{:vendor_id 1133 :product_id 50504}]}]
:parameters {:basic.to_if_alone_timeout_milliseconds 200}}
{:type :mouse_motion_to_scroll
:conditions [{:type :variable_if :name "ball-scroll" :value 1}
{:type :device_if :identifiers [{:vendor_id 1133 :product_id 50504}]}]
:options {:momentum_scroll_enabled true :speed_multiplier 0.6}}]}
{:des "pedals default"
:rules [:pedals [:left_pedal :!Tleft_command]
[:right_pedal :!TSleft_option]
@ -211,3 +199,4 @@
;; P | caps_lock
;; !! | mandatory command + control + optional + shift (hyper)
;; ## | optional any

View File

@ -1,31 +0,0 @@
background #1c2836
foreground #ffffff
cursor #bbbbbb
selection_background #b4d5ff
color0 #000000
color8 #545454
color1 #f9555f
color9 #fa8b8e
color2 #20af89
color10 #34bb99
color3 #fdf029
color11 #ffff55
color4 #589cf5
color12 #589cf5
color5 #934d95
color13 #e75598
color6 #1e9ee6
color14 #3978bb
color7 #bbbbbb
color15 #ffffff
selection_foreground #1c2836
# START_AUTOGENERATED_TAB_STYLE
# Feel free to update these colors manually and remove these comments.
active_tab_foreground #1c2836
active_tab_background #2e84e6
inactive_tab_foreground #2e84e6
inactive_tab_background #1c2836
# END_AUTOGENERATED_TAB_STYLE
macos_titlebar_color background

View File

@ -1,28 +0,0 @@
background #ffffff
foreground #4c4c4c
cursor #4c4c4c
selection_background #d6d6d6
color0 #000000
color8 #000000
color1 #c82828
color9 #c82828
color2 #708b00
color10 #708b00
color3 #e9b600
color11 #e9b600
color4 #4170ae
color12 #4170ae
color5 #8958a7
color13 #8958a7
color6 #3d999f
color14 #3d999f
color7 #fffefe
color15 #fffefe
selection_foreground #ffffff
active_tab_foreground #ffffff
active_tab_background #2e84e6
inactive_tab_foreground #2e84e6
inactive_tab_background #ffffff
macos_titlebar_color background

View File

@ -1,28 +0,0 @@
background #1c2836
foreground #ffffff
cursor #bbbbbb
selection_background #b4d5ff
color0 #000000
color8 #545454
color1 #f9555f
color9 #fa8b8e
color2 #20af89
color10 #34bb99
color3 #fdf029
color11 #ffff55
color4 #589cf5
color12 #589cf5
color5 #934d95
color13 #e75598
color6 #1e9ee6
color14 #3978bb
color7 #bbbbbb
color15 #ffffff
selection_foreground #1c2836
active_tab_foreground #1c2836
active_tab_background #2e84e6
inactive_tab_foreground #2e84e6
inactive_tab_background #1c2836
macos_titlebar_color background

View File

@ -1,27 +0,0 @@
#!/bin/sh
set -eu
config_dir=${1:-"$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd)"}
for appearance in dark light no-preference; do
config_file="$config_dir/$appearance-theme.auto.conf"
if [ ! -f "$config_file" ]; then
echo "not ok - missing $appearance automatic Kitty theme" >&2
exit 1
fi
kitty +runpy '
from kitty.config import load_config
import sys
options = load_config(sys.argv[1])
if options.macos_titlebar_color != 1:
raise SystemExit(
f"{sys.argv[2]} automatic Kitty theme does not use its background "
"for the macOS titlebar"
)
' "$config_file" "$appearance"
done
echo "ok - automatic Kitty themes match their macOS titlebars"