From 3223aaf3b11ad8cef62e082f1d9bbbfbd85e0198 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ali=20=F0=9F=9A=B6?= Date: Fri, 7 Apr 2023 11:03:55 +1000 Subject: [PATCH] Add rectangle config --- RectangleConfig.json | 233 +++++++++++++++++++++++++++++++++++++++++++ nvchad/chadrc.lua | 4 +- zshrc.sh | 2 +- 3 files changed, 236 insertions(+), 3 deletions(-) create mode 100644 RectangleConfig.json diff --git a/RectangleConfig.json b/RectangleConfig.json new file mode 100644 index 0000000..cf2bf0a --- /dev/null +++ b/RectangleConfig.json @@ -0,0 +1,233 @@ +{ + "bundleId" : "com.knollsoft.Rectangle", + "defaults" : { + "allowAnyShortcut" : { + "bool" : false + }, + "almostMaximizeHeight" : { + "float" : 0 + }, + "almostMaximizeWidth" : { + "float" : 0 + }, + "alternateDefaultShortcuts" : { + "bool" : true + }, + "altThirdCycle" : { + "int" : 0 + }, + "alwaysAccountForStage" : { + "int" : 0 + }, + "applyGapsToMaximize" : { + "int" : 0 + }, + "applyGapsToMaximizeHeight" : { + "int" : 0 + }, + "attemptMatchOnNextPrevDisplay" : { + "int" : 0 + }, + "autoMaximize" : { + "int" : 0 + }, + "cascadeAllDeltaSize" : { + "float" : 30 + }, + "centeredDirectionalMove" : { + "int" : 0 + }, + "centerHalfCycles" : { + "int" : 0 + }, + "cornerSnapAreaSize" : { + "float" : 20 + }, + "curtainChangeSize" : { + "int" : 0 + }, + "disabledApps" : { + "string" : "[]" + }, + "dragFromStage" : { + "int" : 0 + }, + "enhancedUI" : { + "int" : 1 + }, + "footprintAlpha" : { + "float" : 0.30000001192092896 + }, + "footprintAnimationDurationMultiplier" : { + "float" : 0 + }, + "footprintBorderWidth" : { + "float" : 2 + }, + "footprintColor" : { + + }, + "footprintFade" : { + "int" : 0 + }, + "fullIgnoreBundleIds" : { + + }, + "gapSize" : { + "float" : 0 + }, + "hideMenubarIcon" : { + "bool" : false + }, + "ignoredSnapAreas" : { + "int" : 0 + }, + "landscapeSnapAreas" : { + + }, + "launchOnLogin" : { + "bool" : true + }, + "minimumWindowHeight" : { + "float" : 0 + }, + "minimumWindowWidth" : { + "float" : 0 + }, + "missionControlDragging" : { + "int" : 0 + }, + "missionControlDraggingAllowedOffscreenDistance" : { + "float" : 25 + }, + "missionControlDraggingDisallowedDuration" : { + "int" : 250 + }, + "moveCursor" : { + "int" : 0 + }, + "moveCursorAcrossDisplays" : { + "int" : 0 + }, + "notifiedOfProblemApps" : { + "bool" : false + }, + "obtainWindowOnClick" : { + "int" : 0 + }, + "portraitSnapAreas" : { + + }, + "relaunchOpensMenu" : { + "bool" : false + }, + "resizeOnDirectionalMove" : { + "bool" : false + }, + "screenEdgeGapBottom" : { + "float" : 0 + }, + "screenEdgeGapLeft" : { + "float" : 0 + }, + "screenEdgeGapRight" : { + "float" : 0 + }, + "screenEdgeGapsOnMainScreenOnly" : { + "bool" : false + }, + "screenEdgeGapTop" : { + "float" : 0 + }, + "shortEdgeSnapAreaSize" : { + "float" : 145 + }, + "showAllActionsInMenu" : { + "int" : 0 + }, + "sixthsSnapArea" : { + "int" : 0 + }, + "sizeOffset" : { + "float" : 0 + }, + "snapEdgeMarginBottom" : { + "float" : 5 + }, + "snapEdgeMarginLeft" : { + "float" : 5 + }, + "snapEdgeMarginRight" : { + "float" : 5 + }, + "snapEdgeMarginTop" : { + "float" : 5 + }, + "snapModifiers" : { + "int" : 0 + }, + "specifiedHeight" : { + "float" : 1050 + }, + "specifiedWidth" : { + "float" : 1680 + }, + "stageSize" : { + "float" : 190 + }, + "subsequentExecutionMode" : { + "int" : 0 + }, + "SUEnableAutomaticChecks" : { + "bool" : false + }, + "todo" : { + "int" : 0 + }, + "todoApplication" : { + + }, + "todoMode" : { + "bool" : false + }, + "todoSidebarWidth" : { + "float" : 400 + }, + "traverseSingleScreen" : { + "int" : 0 + }, + "unsnapRestore" : { + "int" : 0 + }, + "windowSnapping" : { + "int" : 0 + } + }, + "shortcuts" : { + "center" : { + "keyCode" : 8, + "modifierFlags" : 786432 + }, + "leftHalf" : { + "keyCode" : 43, + "modifierFlags" : 786432 + }, + "maximize" : { + "keyCode" : 36, + "modifierFlags" : 786432 + }, + "nextDisplay" : { + "keyCode" : 124, + "modifierFlags" : 1835008 + }, + "previousDisplay" : { + "keyCode" : 123, + "modifierFlags" : 1835008 + }, + "rightHalf" : { + "keyCode" : 47, + "modifierFlags" : 786432 + } + }, + "version" : "71" +} \ No newline at end of file diff --git a/nvchad/chadrc.lua b/nvchad/chadrc.lua index 49aa5a5..1196b30 100644 --- a/nvchad/chadrc.lua +++ b/nvchad/chadrc.lua @@ -5,8 +5,8 @@ local M = {} local highlights = require "custom.highlights" M.ui = { - theme = "doomchad", - theme_toggle = { "doomchad", "one_light" }, + theme = "onenord", + theme_toggle = { "onenord", "one_light" }, hl_override = highlights.override, hl_add = highlights.add, diff --git a/zshrc.sh b/zshrc.sh index 0386c99..ca130d3 100644 --- a/zshrc.sh +++ b/zshrc.sh @@ -396,7 +396,7 @@ setopt nobeep update_auto_completions # should be before antigen activate_cli_tools activate_antigen -activate_base16_shell +# activate_base16_shell activate_asdf myzsh_keybindings