feat: screenshots

This commit is contained in:
Patrick 2023-09-27 13:16:36 +02:00
parent df40786d28
commit 5b153ca98f
Signed by: patrick
GPG key ID: 451F95EFB8BECD0F
5 changed files with 13 additions and 28 deletions

View file

@ -14,8 +14,5 @@
polarity = "dark";
image = config.lib.stylix.pixel "base00";
base16Scheme = "${pkgs.base16-schemes}/share/themes/helios.yaml";
override = {
base00 = "#000000";
};
};
}

View file

@ -1,4 +1,8 @@
{config, ...}: {
{
config,
pkgs,
...
}: {
# import shared sway config
imports = [../sway3.nix];
stylix.targets.i3.enable = true;
@ -11,6 +15,7 @@
in {
"Menu" = "exec ${cfg.menu}";
"${cfg.modifier}+c" = "exec ${cfg.menu}";
"${cfg.modifier}+F12" = "exec ${pkgs.maim}/bin/maim -s | xclip -selection clipboard -t image/png";
};
};
};

View file

@ -129,6 +129,7 @@ in {
interval = 1;
}
];
theme = "native";
icons = "material-nf";
settings."icons.overrides" = {
cpu = "";

View file

@ -7,8 +7,8 @@
home.pointerCursor = {
gtk.enable = true;
x11.enable = true;
package = pkgs.bibata-cursors;
name = "Bibata-Original-Ice";
package = pkgs.openzone-cursors;
name = "OpenZone_White_Slim";
size = 18;
};

View file

@ -20,28 +20,9 @@
disable_ligatures = "always";
# Modified onehalfdark color scheme
foreground = "#c9d3e5";
background = "#090a0c";
cursor = "#cccccc";
shell_integration = "disabled";
color0 = " #090a0c";
color8 = " #393e48";
color1 = " #b2555d";
color9 = " #e06c75";
color2 = " #81a566";
color10 = "#98c379";
color3 = " #ccab6e";
color11 = "#e6c17c";
color4 = " #5395cc";
color12 = "#61afef";
color5 = " #9378de";
color13 = "#c678dd";
color6 = " #56b6c2";
color14 = "#56b6c2";
color7 = " #979eab";
color15 = "#abb2bf";
selection_foreground = "#282c34";
selection_background = "#979eab";
@ -69,9 +50,10 @@
"ctrl+shift+." = "change_font_size all -2.0";
"ctrl+shift+," = "change_font_size all +2.0";
};
extraConfig = ''
extraConfig = lib.mkAfter ''
# Use nvim as scrollback pager
scrollback_pager nvim -u NONE -c "set nonumber nolist showtabline=0 foldcolumn=0 laststatus=0" -c "autocmd TermOpen * normal G" -c "silent write! /tmp/kitty_scrollback_buffer | te head -c-1 /tmp/kitty_scrollback_buffer; rm /tmp/kitty_scrollback_buffer; cat"
background #000000
'';
};
}