Skip to content

Commit

Permalink
wezterm: remove window decorations on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman committed Jan 29, 2025
1 parent bc7b8f3 commit df30136
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/home/programs/terminal/emulators/wezterm/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
config,
lib,
namespace,
pkgs,
...
}:
let
Expand Down Expand Up @@ -177,7 +178,7 @@ in
},
window_background_opacity = 0.85,
window_close_confirmation = "NeverPrompt",
window_decorations = "RESIZE",
window_decorations = ${if pkgs.stdenv.isDarwin then "RESIZE" else "NONE"},
window_padding = { left = 12, right = 12, top = 12, bottom = 12, },
}
'';
Expand Down

0 comments on commit df30136

Please sign in to comment.