Skip to content

Commit

Permalink
61 papercuts
Browse files Browse the repository at this point in the history
  • Loading branch information
Enzime committed Sep 25, 2024
1 parent 36c74a9 commit a455d8b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
- Removed windowless apps from AltTab on macOS
- Added more apps to quit when windowless on macOS
- Use Swift Quit on macOS
- Refactored `settings.json` to not generate a hardcoded JSON string
- Use AltTab on macOS
Expand Down
7 changes: 6 additions & 1 deletion modules/graphical.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
# Took a lot of debugging to figure this out
# plutil -type hideSpaceNumberLabels ~/Library/Preferences/com.lwouis.alt-tab-macos.plist
hideSpaceNumberLabels = "true";
hideWindowlessApps = "true";
holdShortcut = "\\u2318";
startAtLogin = "false";

Expand Down Expand Up @@ -66,7 +67,11 @@
};

system.defaults.CustomUserPreferences."onebadidea.Swift-Quit" = {
SwiftQuitExcludedApps = [ "/System/Applications/Utilities/Terminal.app" ];
SwiftQuitExcludedApps = [
"/System/Applications/Calendar.app"
"/System/Applications/Utilities/Terminal.app"
"${pkgs.vscode}/Applications/Visual Studio Code.app"
];
SwiftQuitSettings = {
excludeBehaviour = "includeApps";
launchAtLogin = false;
Expand Down

0 comments on commit a455d8b

Please sign in to comment.