nixos/home/desktop/xfce.nix
Evie Litherland-Smith 250fa6325f Update tokyonight colourscheme
Update from storm still being used in some places to night
Add to alacritty, set to use alacritty as main terminal
Add to xfce terminal as well, including transparency
2023-07-03 16:09:48 +01:00

28 lines
931 B
Nix

{pkgs, ...}: {
imports = [
./gtk.nix
./picom.nix
./rofi.nix
./polybar.nix
];
xfconf.settings.xsettings."Gtk/MonospaceFontName" = "FiraCode Nerd Font 12";
xdg.configFile."xfce4/terminal/colorschemes/tokyonight_night".source =
pkgs.fetchFromGitHub {
owner = "folke";
repo = "tokyonight.nvim";
rev = "cd5156f4b4a6c4c337a46deb0c0bd37319920833";
sha256 = "/ht+ixR1eyYR0la00Xq5q1gCsgb5Ly90JghERwbaDPQ=";
}
+ "/extras/xfceterm/tokyonight_night.theme";
xdg.configFile."xfce4/terminal/terminalrc".text = ''
[Configuration]
BackgroundMode=TERMINAL_BACKGROUND_TRANSPARENT
BackgroundDarkness=0.8
ColorForeground=#c0caf5
ColorBackground=#1a1b26
ColorSelection=#c0caf5
ColorSelectionBackground=#283457
ColorPalette=#15161e;#f7768e;#9ece6a;#e0af68;#7aa2f7;#bb9af7;#7dcfff;#a9b1d6;#414868;#f7768e;#9ece6a;#e0af68;#7aa2f7;#bb9af7;#7dcfff;#c0caf5
'';
}