Better snapper + various fixes
This commit is contained in:
parent
98e4871193
commit
30efa48b7d
14 changed files with 237 additions and 54 deletions
|
|
@ -30,4 +30,31 @@ in
|
|||
'';
|
||||
startupPrograms = [];
|
||||
};
|
||||
|
||||
# xdg.configFile."bspwm/bspwmrc" = {
|
||||
# executable = true;
|
||||
# text = ''
|
||||
# #!/bin/sh
|
||||
|
||||
# bspc monitor DP1 -d I II III IV V VI VII VIII IX X
|
||||
# bspc monitor HDMI-0 -d I II III IV V VI VII VIII IX X
|
||||
# bspc monitor eDP-1-1 -d I II III IV V VI VII VIII IX X
|
||||
# bspc monitor eDP1 -d I II III IV V VI VII VIII IX X
|
||||
# bspc config border_radius 8
|
||||
# bspc config border_width 2
|
||||
# bspc config borderless_monocle true
|
||||
# bspc config focused_border_color '#678EBD'
|
||||
# bspc config gapless_monocle false
|
||||
# bspc config normal_border_color '#5E81AC'
|
||||
# bspc config split_ratio 0.500000
|
||||
# bspc config top_padding 0
|
||||
# bspc config window_gap 4
|
||||
# # java gui fixes
|
||||
# export _JAVA_AWT_WM_NONREPARENTING=1
|
||||
# bspc rule -a sun-awt-X11-XDialogPeer state=floating
|
||||
|
||||
# sleep 2
|
||||
# polybar-msg cmd restart
|
||||
# '';
|
||||
# };
|
||||
}
|
||||
|
|
|
|||
|
|
@ -115,6 +115,6 @@ in
|
|||
]
|
||||
) ++ rustPlugins ++ cppPlugins ++ pythonPlugins ++ nixPlugins ++ spellingPlugins ++ dataFormats;
|
||||
};
|
||||
|
||||
xdg.configFile."kak/colors/nord.kak".source = ../configs/kak/colors/nord.kak;
|
||||
xdg.configFile."kak-lsp/kak-lsp.toml".source = ../configs/kak-lsp/kak-lsp.toml;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ let
|
|||
ramp = [ "▂" "▃" "▄" "▅" "▆" "▇" ];
|
||||
in
|
||||
{
|
||||
home.packages = with pkgs; [ nerdfonts emojione noto-fonts-emoji ];
|
||||
home.packages = with pkgs; [ nerdfonts emojione noto-fonts-emoji material-design-icons ];
|
||||
services.polybar = {
|
||||
enable = true;
|
||||
package = pkgs.polybarFull;
|
||||
|
|
|
|||
|
|
@ -3,41 +3,41 @@
|
|||
enable = true;
|
||||
compression = true;
|
||||
matchBlocks = {
|
||||
"gitlab.com" = {
|
||||
hostname = "gitlab.com";
|
||||
identityFile = "~/.ssh/gitlab";
|
||||
identitiesOnly = true;
|
||||
};
|
||||
"github.com" = {
|
||||
hostname = "github.com";
|
||||
identityFile = "~/.ssh/github";
|
||||
identitiesOnly = true;
|
||||
};
|
||||
"bitbucket.com" = {
|
||||
hostname = "bitbucket.com";
|
||||
identityFile = "~/.ssh/bitbucket";
|
||||
identitiesOnly = true;
|
||||
};
|
||||
"aur.archlinux.org" = {
|
||||
hostname = "aur.archlinux.org";
|
||||
identityFile = "~/.ssh/aur";
|
||||
identitiesOnly = true;
|
||||
};
|
||||
"heroku.com" = {
|
||||
hostname = "heroku.com";
|
||||
identityFile = "~/.ssh/heroku";
|
||||
identitiesOnly = true;
|
||||
};
|
||||
"ngrok.io" = {
|
||||
hostname = "ngrok.io";
|
||||
identityFile = "~/.ssh/local";
|
||||
identitiesOnly = true;
|
||||
};
|
||||
"172.27.108.?" = {
|
||||
hostname = "172.27.108.?";
|
||||
identityFile = "~/.ssh/local";
|
||||
identitiesOnly = true;
|
||||
};
|
||||
# "gitlab.com" = {
|
||||
# hostname = "gitlab.com";
|
||||
# identityFile = "~/.ssh/gitlab";
|
||||
# identitiesOnly = true;
|
||||
# };
|
||||
# "github.com" = {
|
||||
# hostname = "github.com";
|
||||
# identityFile = "~/.ssh/github";
|
||||
# identitiesOnly = true;
|
||||
# };
|
||||
# "bitbucket.com" = {
|
||||
# hostname = "bitbucket.com";
|
||||
# identityFile = "~/.ssh/bitbucket";
|
||||
# identitiesOnly = true;
|
||||
# };
|
||||
# "aur.archlinux.org" = {
|
||||
# hostname = "aur.archlinux.org";
|
||||
# identityFile = "~/.ssh/aur";
|
||||
# identitiesOnly = true;
|
||||
# };
|
||||
# "heroku.com" = {
|
||||
# hostname = "heroku.com";
|
||||
# identityFile = "~/.ssh/heroku";
|
||||
# identitiesOnly = true;
|
||||
# };
|
||||
# "ngrok.io" = {
|
||||
# hostname = "ngrok.io";
|
||||
# identityFile = "~/.ssh/local";
|
||||
# identitiesOnly = true;
|
||||
# };
|
||||
# "172.27.108.?" = {
|
||||
# hostname = "172.27.108.?";
|
||||
# identityFile = "~/.ssh/local";
|
||||
# identitiesOnly = true;
|
||||
# };
|
||||
"*" = {
|
||||
identityFile = "~/.ssh/id_ed25519";
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue