1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-09-13 09:37:57 +00:00

zen-browser: init

This commit is contained in:
RGBCube 2025-07-31 17:53:16 +03:00
parent d84249b3f2
commit 48fedaa89f
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M
6 changed files with 109 additions and 5 deletions

View file

@ -1,4 +1,4 @@
{
{ config, ... }: {
system.defaults.dock = {
autohide = true;
showhidden = true; # Translucent.
@ -14,7 +14,8 @@
enable-spring-load-actions-on-all-items = true;
persistent-apps = [
{ app = "/Applications/Zen.app"; }
{ app = "${config.home-manager.users.${config.system.primaryUser}
.programs.zen-browser.package}/Applications/Zen Browser (Beta).app"; }
{ app = "/Applications/Ghostty.app"; }
];
};

View file

@ -225,7 +225,7 @@ in {
hs.hotkey.bind(super, "f", PaperWM.actions.toggle_floating)
-- APPLICATIONS
hs.hotkey.bind(super, "w", function() hs.application.launchOrFocus("Zen") end)
hs.hotkey.bind(super, "w", function() hs.application.launchOrFocus("Zen Browser (Beta)") end)
hs.hotkey.bind(super, "return", function() hs.application.launchOrFocus("Ghostty") end)
hs.hotkey.bind(super, "t", function() hs.application.launchOrFocus("Finder") end)