Skip to content

Commit

Permalink
feat: Adding alternate layout for 🥄
Browse files Browse the repository at this point in the history
  • Loading branch information
TechDufus committed Oct 7, 2024
1 parent 3b3e7d3 commit 88b9b93
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
5 changes: 3 additions & 2 deletions roles/hammerspoon/files/config/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@ local macros = {
a = function() hs.eventtap.keyStroke({ 'cmd' }, '`') end, -- next window of focused app
-- c = function() hs.eventtap.keyStroke({ 'cmd', 'ctrl' }, 'c') end, -- color picker app
-- x = function() hs.eventtap.keyStroke({ 'cmd', 'ctrl' }, 'x') end, -- color picker eye dropper
b = function() hs.eventtap.keyStroke(Hyper, 'b') end, -- browser bookmark search
t = function() hs.eventtap.keyStroke(Hyper, 't') end, -- browser bookmark search
b = function() hs.eventtap.keyStroke(Hyper, 'b') end, -- browser bookmark search (raycast)
t = function() hs.eventtap.keyStroke(Hyper, 't') end, -- browser current tab search (raycast)
g = function() hs.eventtap.keyStroke(Hyper, 'g') end, -- gif search (raycast)
}

registerModalBindings(nil, 'f16', macros, true)
Expand Down
14 changes: 7 additions & 7 deletions roles/hammerspoon/files/config/layouts.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ return {
{
name = 'Standard Dev',
cells = {
{ positions.standard.top_left },
{ positions.standard.bottom_left },
{ positions.standard.left_center },
{ positions.standard.center },
{ positions.standard.right },
{ positions.standard.left_hidden },
{ positions.standard.right_hidden },
{ positions.standard.top_left, positions.standard.full_left },
{ positions.standard.bottom_left, positions.standard.full_left },
{ positions.standard.left_center, positions.standard.left_center },
{ positions.standard.center, positions.standard.center },
{ positions.standard.right, positions.standard.right },
{ positions.standard.left_hidden, positions.standard.left_hidden },
{ positions.standard.right_hidden, positions.standard.right_hidden },
},
apps = {
MatterMost = { cell = 1, open = true },
Expand Down

0 comments on commit 88b9b93

Please sign in to comment.