-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyabairc
executable file
·121 lines (96 loc) · 5.37 KB
/
yabairc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# !/usr/bin/env sh
# ====== Variables =============================
declare -A color
color["focused"]="0xE0808080"
color["normal"]="0x00010101"
color["preselect"]="0xE02d74da"
# ===== Loading Scripting Additions ============
# See: https://github.com/koekeishiya/yabai/wiki/Installing-yabai-(latest-release)#macos-big-sur---automatically-load-scripting-addition-on-startup
sudo yabai --load-sa
yabai -m signal --add event=dock_did_restart action="sudo yabai --load-sa"
# ===== Tiling setting =========================
# *** layout
yabai -m config layout float
# New window spawns to the right if vertical split, or bottom if horizontal split
yabai -m config window_placement second_child
# *** padding and gaps
yabai -m config top_padding 0
yabai -m config bottom_padding 0
yabai -m config left_padding 0
yabai -m config right_padding 0
yabai -m config window_gap 5
# *** split ratios
yabai -m config auto_balance off
yabai -m config split_ratio 0.50
# *** window opacity (default: off)
# example: render all unfocused windows with 90% opacity
yabai -m config window_opacity off
yabai -m config active_window_opacity 1.0
yabai -m config normal_window_opacity 0.9
# floating windows are always on top (default: off)
yabai -m config window_topmost off
# modify window shadows (default: on, options: on, off, float)
# example: show shadows only for floating windows
yabai -m config window_shadow off
# window border
yabai -m config window_border off
yabai -m config window_border_width 2
yabai -m config active_window_border_color "${color["focused"]}"
yabai -m config normal_window_border_color "${color["normal"]}"
yabai -m config insert_feedback_color "${color["preselect"]}"
# ===== Mouse ================================
# 鼠标修饰键 意思就是按着这个键就可以使用鼠标单独修改窗口大小了
# set mouse interaction modifier key (default: fn)
# set modifier + left-click drag to move window (default: move)
# set modifier + right-click drag to resize window (default: resize)
yabai -m config mouse_modifier fn
yabai -m config mouse_action1 move
yabai -m config mouse_action2 resize
# With focus follows mouse, you can also focus windows without having to click on them.
# This can be set to either autofocus (window gets focused, but not raised) or
# autoraise (window gets raised as if it was clicked on).
# Focus follows mouse is disabled while holding the mouse modifier key
# so that you can access the menu bar easily.
# Mouse follows focus makes it so that when yabai focuses another window (e.g. through a focus command),
# the mouse cursor gets moved to the center of the focused window.
# set focus follows mouse mode (default: off, options: off, autoraise, autofocus)
yabai -m config mouse_follows_focus autofocus
# (default off, options: on)
yabai -m config focus_follows_mouse on
# 在平铺管理情况下,拖动一个窗口到另一窗口位置时的操作
# - swap: 交换窗口位置
# - stack: 堆叠在旧窗口上
yabai -m config mouse_drop_action swap
# ===== Rules ==================================
# Note: make sure to change "Dock" -> "options" -> "assign to" -> "None"
# Credit to: https://github.com/koekeishiya/yabai/issues/1005
yabai -m rule --add app="^System Preferences$" manage=off
yabai -m rule --add app="^Archive Utility$" manage=off
yabai -m rule --add app="^Logi Options+$" manage=off
yabai -m rule --add app="^TickTick$" manage=off
yabai -m rule --add app="^Alfred Preferences$" manage=off
yabai -m rule --add app="^WeChat$" manage=off
yabai -m rule --add app="^QQ$" manage=off
yabai -m rule --add app="^Contexts$" manage=off
yabai -m rule --add app="^TencentMeeting$" manage=off
#yabai -m rule --add label="Finder" app="^Finder$" title="(Co(py|nnect)|Move|Info|Pref)" manage=off
yabai -m rule --add label="macfeh" app="^macfeh$" manage=off
yabai -m rule --add label="System Preferences" app="^System Preferences$" title=".*" manage=off
yabai -m rule --add label="App Store" app="^App Store$" manage=off
yabai -m rule --add label="Activity Monitor" app="^Activity Monitor$" manage=off
yabai -m rule --add label="KeePassXC" app="^KeePassXC$" manage=off
yabai -m rule --add label="Calculator" app="^Calculator$" manage=off
yabai -m rule --add label="Dictionary" app="^Dictionary$" manage=off
yabai -m rule --add label="mpv" app="^mpv$" manage=off
yabai -m rule --add label="Software Update" title="Software Update" manage=off
yabai -m rule --add label="About This Mac" app="System Information" title="About This Mac" manage=off
# ===== Signals ================================
yabai -m signal --add event=application_front_switched action="${ubersicht_spaces_refresh_command}"
yabai -m signal --add event=display_changed action="${ubersicht_spaces_refresh_command}"
yabai -m signal --add event=space_changed action="${ubersicht_spaces_refresh_command}"
yabai -m signal --add event=window_created action="${ubersicht_spaces_refresh_command}"
yabai -m signal --add event=window_destroyed action="${ubersicht_spaces_refresh_command}"
yabai -m signal --add event=window_focused action="${ubersicht_spaces_refresh_command}"
yabai -m signal --add event=window_title_changed action="${ubersicht_spaces_refresh_command}"
set +x
printf "yabai: configuration loaded...\\n"