mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
remove the now-upstream console background patch
This commit is contained in:
parent
40c83aef7b
commit
347dfe59bc
2 changed files with 9 additions and 14 deletions
|
@ -1,9 +0,0 @@
|
|||
--- a/src/kgx-terminal.c
|
||||
+++ b/src/kgx-terminal.c
|
||||
@@ -159,5 +159,5 @@ update_terminal_colors (KgxTerminal *self)
|
||||
default:
|
||||
fg = (GdkRGBA) { 1.0, 1.0, 1.0, 1.0};
|
||||
- bg = (GdkRGBA) { 0.05, 0.05, 0.05, 0.96 };
|
||||
+ bg = (GdkRGBA) { 0.12, 0.12, 0.12, 1.0 };
|
||||
break;
|
||||
}
|
|
@ -2,11 +2,15 @@
|
|||
nixpkgs.overlays = [
|
||||
(self: super: {
|
||||
gnome-console = super.gnome-console.overrideAttrs (prev: {
|
||||
patches = prev.patches ++ [
|
||||
./background.patch
|
||||
./no-close-tab-prompt.patch
|
||||
./tango.patch
|
||||
];
|
||||
patches =
|
||||
(
|
||||
if (builtins.elem "patches" (builtins.attrNames prev))
|
||||
then prev.patches
|
||||
else [ ]
|
||||
) ++ [
|
||||
./no-close-tab-prompt.patch
|
||||
./tango.patch
|
||||
];
|
||||
});
|
||||
})
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue