diff options
| author | Baitinq <[email protected]> | 2024-12-30 01:37:10 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2024-12-30 01:37:10 +0100 |
| commit | 7cc40de3e2ca5a48504c5b5396198b222e616f24 (patch) | |
| tree | f1dd574b56ee1f23687fae12feb52bcc6444ea35 | |
| parent | Font: Change font style (diff) | |
| download | nixos-config-7cc40de3e2ca5a48504c5b5396198b222e616f24.tar.gz nixos-config-7cc40de3e2ca5a48504c5b5396198b222e616f24.tar.bz2 nixos-config-7cc40de3e2ca5a48504c5b5396198b222e616f24.zip | |
Dotfiles: Fix ghostty gtk borders
| -rw-r--r-- | dotfiles/gtk-4.0/gtk.css | 5 | ||||
| -rw-r--r-- | hosts/home.nix | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/dotfiles/gtk-4.0/gtk.css b/dotfiles/gtk-4.0/gtk.css new file mode 100644 index 0000000..4756ccd --- /dev/null +++ b/dotfiles/gtk-4.0/gtk.css @@ -0,0 +1,5 @@ +.background { + margin: 0; + padding: 0; + box-shadow: 0 0 0 0; +} diff --git a/hosts/home.nix b/hosts/home.nix index 7a9a584..aff09f4 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -388,6 +388,7 @@ configFile."waybar/".source = "${dotfiles}/waybar/"; configFile."zathura/zathurarc".source = "${dotfiles}/zathurarc"; configFile."dunst/dunstrc".source = "${dotfiles}/dunstrc"; + configFile."gtk-4.0/".source = "${dotfiles}/gtk-4.0/"; }; home.file = { |