feat: update launchers and terminal settings

This commit is contained in:
Jet 2026-04-28 23:18:07 -07:00
parent 00e0688d11
commit 9d0793406c
No known key found for this signature in database
2 changed files with 11 additions and 0 deletions

View file

@ -307,6 +307,7 @@ let
comment = "Launch Zen Browser"; comment = "Launch Zen Browser";
exec = "${config.programs.zen-browser.package}/bin/zen-beta"; exec = "${config.programs.zen-browser.package}/bin/zen-beta";
terminal = false; terminal = false;
noDisplay = true;
categories = [ "Network" ]; categories = [ "Network" ];
}; };
ghosttyZellijStartup = pkgs.makeDesktopItem { ghosttyZellijStartup = pkgs.makeDesktopItem {
@ -315,6 +316,7 @@ let
comment = "Open Ghostty and attach to the main Zellij session"; comment = "Open Ghostty and attach to the main Zellij session";
exec = "${pkgs.ghostty}/bin/ghostty --fullscreen=true -e ${zellijPersistentSession}/bin/zellij-persistent-session"; exec = "${pkgs.ghostty}/bin/ghostty --fullscreen=true -e ${zellijPersistentSession}/bin/zellij-persistent-session";
terminal = false; terminal = false;
noDisplay = true;
categories = [ categories = [
"TerminalEmulator" "TerminalEmulator"
]; ];
@ -325,6 +327,7 @@ let
comment = "Launch Vesktop in fullscreen"; comment = "Launch Vesktop in fullscreen";
exec = "${pkgs.vesktop}/bin/vesktop --start-fullscreen"; exec = "${pkgs.vesktop}/bin/vesktop --start-fullscreen";
terminal = false; terminal = false;
noDisplay = true;
categories = [ "Network" ]; categories = [ "Network" ];
}; };
signalStartup = pkgs.makeDesktopItem { signalStartup = pkgs.makeDesktopItem {
@ -333,6 +336,7 @@ let
comment = "Launch Signal in fullscreen"; comment = "Launch Signal in fullscreen";
exec = "${pkgs.signal-desktop}/bin/signal-desktop --start-fullscreen"; exec = "${pkgs.signal-desktop}/bin/signal-desktop --start-fullscreen";
terminal = false; terminal = false;
noDisplay = true;
categories = [ "Network" ]; categories = [ "Network" ];
}; };
betterbirdStartup = pkgs.makeDesktopItem { betterbirdStartup = pkgs.makeDesktopItem {
@ -341,6 +345,7 @@ let
comment = "Launch Betterbird in fullscreen"; comment = "Launch Betterbird in fullscreen";
exec = "${betterbird}/bin/betterbird"; exec = "${betterbird}/bin/betterbird";
terminal = false; terminal = false;
noDisplay = true;
categories = [ "Network" ]; categories = [ "Network" ];
}; };
zulipStartup = pkgs.makeDesktopItem { zulipStartup = pkgs.makeDesktopItem {
@ -349,6 +354,7 @@ let
comment = "Launch Zulip in fullscreen"; comment = "Launch Zulip in fullscreen";
exec = "${pkgs.zulip}/bin/zulip --start-fullscreen"; exec = "${pkgs.zulip}/bin/zulip --start-fullscreen";
terminal = false; terminal = false;
noDisplay = true;
categories = [ "Network" ]; categories = [ "Network" ];
}; };
in in

View file

@ -64,8 +64,13 @@
window-decoration = false; window-decoration = false;
font-family = "CommitMono Nerd Font"; font-family = "CommitMono Nerd Font";
font-size = 12; font-size = 12;
font-feature = "-calt, -liga";
confirm-close-surface = false; confirm-close-surface = false;
bell-features = "no-audio"; bell-features = "no-audio";
link-url = true;
link-previews = true;
cursor-style = "bar";
copy-on-select = "clipboard";
theme = "GitHub Dark High Contrast"; theme = "GitHub Dark High Contrast";
fullscreen = true; fullscreen = true;
}; };