15 lines
633 B
Lua
15 lines
633 B
Lua
-- Default keybindings for launching apps in Hyper Mode
|
|
--
|
|
-- To launch _your_ most commonly-used apps via Hyper Mode, create a copy of
|
|
-- this file, save it as `hyper-apps.lua`, and edit the table below to configure
|
|
-- your preferred shortcuts.
|
|
return {
|
|
{ 'a', 'Alacritty' }, -- "A" for "Apple Music"
|
|
{ 's', 'Safari' }, -- "B" for "Browser"
|
|
{ 'c', 'Telegram' }, -- "C for "Chat"
|
|
{ 'f', 'Finder' }, -- "F" for "Finder"
|
|
{ 'g', 'Mail' }, -- "G" for "Gmail"
|
|
{ 'z', 'Slack' }, -- "S" for "Slack"
|
|
-- { 't', 'Telegram' }, -- "T" for "Terminal"
|
|
}
|