Changed terminal to kitty and split up even more shit
This commit is contained in:
		
							parent
							
								
									721c51e470
								
							
						
					
					
						commit
						6e14acf607
					
				
							
								
								
									
										53
									
								
								config/xsession/terminal.nix
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										53
									
								
								config/xsession/terminal.nix
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,53 @@
 | 
				
			|||||||
 | 
					{ pkgs, config, lib, ...}:
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  imports = [ ./zsh/zsh.nix ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#  programs.urxvt = {
 | 
				
			||||||
 | 
					#    enable = true;
 | 
				
			||||||
 | 
					#    fonts = [ "xft:DejaVu Sans Mono Nerd Font:size=12" ];
 | 
				
			||||||
 | 
					#    scroll.bar.enable = false;
 | 
				
			||||||
 | 
					#    shading = 20;
 | 
				
			||||||
 | 
					#    extraConfig = {
 | 
				
			||||||
 | 
					#      "foreground" = "#cccccc";
 | 
				
			||||||
 | 
					#      "tintColor" = "white";
 | 
				
			||||||
 | 
					#      "depth" = 32;
 | 
				
			||||||
 | 
					#      "background" = "rgba:0000/0000/0200/c800";
 | 
				
			||||||
 | 
					#      "color0" = "#000000";
 | 
				
			||||||
 | 
					#      "color1" = "#9e1828";
 | 
				
			||||||
 | 
					#      "color2" = "#aece92";
 | 
				
			||||||
 | 
					#      "color3" = "#968a38";
 | 
				
			||||||
 | 
					#      "color4" = "#414171";
 | 
				
			||||||
 | 
					#      "color5" = "#963c59";
 | 
				
			||||||
 | 
					#      "color6" = "#418179";
 | 
				
			||||||
 | 
					#      "color7" = "#bebebe";
 | 
				
			||||||
 | 
					#      "color8" = "#666666";
 | 
				
			||||||
 | 
					#      "color9" = "#cf6171";
 | 
				
			||||||
 | 
					#      "color10" = "#c5f779";
 | 
				
			||||||
 | 
					#      "color11" = "#fff796";
 | 
				
			||||||
 | 
					#      "color12" = "#4186be";
 | 
				
			||||||
 | 
					#      "color13" = "#cf9ebe";
 | 
				
			||||||
 | 
					#      "color14" = "#71bebe";
 | 
				
			||||||
 | 
					#      "color15" = "#ffffff";
 | 
				
			||||||
 | 
					#      "buffered" = "false";
 | 
				
			||||||
 | 
					#    };
 | 
				
			||||||
 | 
					#  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  home.file.kitty = {
 | 
				
			||||||
 | 
					    target = ".config/kitty/kitty.conf";
 | 
				
			||||||
 | 
					    text = ''
 | 
				
			||||||
 | 
					font_family		monospace
 | 
				
			||||||
 | 
					font_size		12.0
 | 
				
			||||||
 | 
					background_opacity	0.7
 | 
				
			||||||
 | 
					map ctrl+shift+question change_font_size all +2.0
 | 
				
			||||||
 | 
					    '';
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 home.packages = [
 | 
				
			||||||
 | 
					    pkgs.gnome3.gnome-terminal
 | 
				
			||||||
 | 
					    pkgs.kitty
 | 
				
			||||||
 | 
					  ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@ -1,5 +1,8 @@
 | 
				
			|||||||
{pkgs, config, lib, ...}:
 | 
					{pkgs, config, lib, ...}:
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  imports = [ ./dunstrc.nix ./terminal.nix ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  home.keyboard = {
 | 
					  home.keyboard = {
 | 
				
			||||||
    layout = "no-latin1";
 | 
					    layout = "no-latin1";
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
@ -36,8 +39,8 @@
 | 
				
			|||||||
          "${modifier}+b" = "exec firefox";
 | 
					          "${modifier}+b" = "exec firefox";
 | 
				
			||||||
          "${modifier}+t" = "exec gedit";
 | 
					          "${modifier}+t" = "exec gedit";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
          "${modifier}+Return" = lib.mkForce "exec i3-sensible-terminal";
 | 
					          "${modifier}+Return" = lib.mkForce "exec kitty";
 | 
				
			||||||
          "${modifier}+Shift+Return" = "exec i3-sensible-terminal -e ssh daniel@adam";
 | 
					          "${modifier}+Shift+Return" = "exec kitty -e ssh daniel@adam";
 | 
				
			||||||
        };
 | 
					        };
 | 
				
			||||||
      };
 | 
					      };
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
@ -49,10 +52,14 @@
 | 
				
			|||||||
  };
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  home.packages = [
 | 
					  home.packages = [
 | 
				
			||||||
 | 
					    pkgs.xorg.xbacklight
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    pkgs.dunst
 | 
					    pkgs.dunst
 | 
				
			||||||
    pkgs.libnotify
 | 
					    pkgs.libnotify
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    pkgs.dmenu
 | 
					    pkgs.dmenu
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    pkgs.scrot
 | 
				
			||||||
  ];
 | 
					  ];
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Some files were not shown because too many files have changed in this diff Show More
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user