forked from rux616/karabiner-windows-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbundle.libsonnet
More file actions
74 lines (69 loc) · 1.76 KB
/
bundle.libsonnet
File metadata and controls
74 lines (69 loc) · 1.76 KB
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
{
//--------------------//
// BUNDLE IDENTIFIERS //
//--------------------//
// bundle identifiers for hypervisor applications
hypervisors: [
// Oracle VirtualBox
'^org\\.virtualbox\\.app\\.VirtualBoxVM$',
// Parallels
'^com\\.parallels\\.desktop\\.console$',
// VMWare Fusion
'^org\\.vmware\\.fusion$',
],
// bundle identifiers for IDE applications
ides: [
// GNU Emacs (GUI)
'^org\\.gnu\\.emacs$',
'^org\\.gnu\\.Emacs$',
// JetBrains tools
'^com\\.jetbrains',
// Microsoft VSCode
'^com\\.microsoft\\.VSCode$',
// VSCodium - Open Source VSCode
'^com\\.vscodium$',
// Sublime Text
'^com\\.sublimetext\\.3$',
// Kitty
'^net\\.kovidgoyal\\.kitty$',
// Beyond Compare 4 & 5
'^com\\.ScooterSoftware',
],
// bundle identifiers for remote desktop applications
remoteDesktops: [
// Citrix XenAppViewer
'^com\\.citrix\\.XenAppViewer$',
// Microsoft Remote Desktop Connection
'^com\\.microsoft\\.rdc\\.macos$',
],
// bundle identifiers for terminal emulator applications
terminalEmulators: [
// Alacritty (New)
'^com\\.alacritty$',
// Alacritty (Old)
'^io\\.alacritty$',
// Hyper
'^co\\.zeit\\.hyper$',
// iTerm2
'^com\\.googlecode\\.iterm2$',
// Terminal
'^com\\.apple\\.Terminal$',
// WezTerm
'^com\\.github\\.wez\\.wezterm$',
// Ghostty
'^com\\.mitchellh\\.ghostty$',
],
// bundle identifiers for web browser applications
webBrowsers: [
// Google Chrome
'^com\\.google\\.chrome$',
'^com\\.google\\.Chrome$',
// Mozilla Firefox
'^org\\.mozilla\\.firefox$',
'^org\\.mozilla\\.nightly$',
// Brave Browser
'^com\\.brave\\.Browser$',
// Safari
'^com\\.apple\\.Safari$',
],
}