2019-09-11 17:17:56 +04:00
|
|
|
{ pkgs, config, ... }:
|
|
|
|
let
|
|
|
|
thm = config.themes.colors;
|
|
|
|
apps = config.defaultApplications;
|
|
|
|
in {
|
|
|
|
environment.sessionVariables._JAVA_AWT_WM_NONREPARENTING = "1";
|
|
|
|
home-manager.users.alukard.xsession.windowManager.i3 = {
|
|
|
|
enable = true;
|
|
|
|
package = pkgs.i3-gaps;
|
|
|
|
config = rec {
|
|
|
|
assigns = {
|
|
|
|
"" = [ { class = "Chromium"; } { class = "Firefox"; } ];
|
|
|
|
"" = [
|
|
|
|
{ class = "^Telegram"; }
|
|
|
|
{ class = "^VK"; }
|
|
|
|
{ class = "^trojita"; }
|
|
|
|
{ title = "weechat"; }
|
|
|
|
{ class = "nheko"; }
|
|
|
|
];
|
|
|
|
"ﱘ" = [{ class = "cantata"; }];
|
|
|
|
};
|
|
|
|
bars = [ ];
|
|
|
|
fonts = [ "RobotoMono 9" ];
|
|
|
|
|
|
|
|
colors = rec {
|
|
|
|
background = thm.bg;
|
|
|
|
unfocused = {
|
|
|
|
text = thm.alt;
|
|
|
|
border = thm.dark;
|
|
|
|
background = thm.bg;
|
|
|
|
childBorder = thm.dark;
|
|
|
|
indicator = thm.fg;
|
|
|
|
};
|
|
|
|
focusedInactive = unfocused;
|
|
|
|
urgent = unfocused // {
|
|
|
|
text = thm.fg;
|
|
|
|
border = thm.orange;
|
|
|
|
childBorder = thm.orange;
|
|
|
|
};
|
|
|
|
focused = unfocused // {
|
|
|
|
childBorder = thm.blue;
|
|
|
|
border = thm.blue;
|
|
|
|
background = thm.dark;
|
|
|
|
text = thm.fg;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
gaps = {
|
|
|
|
inner = 6;
|
|
|
|
smartGaps = true;
|
|
|
|
smartBorders = "on";
|
|
|
|
};
|
|
|
|
focus.mouseWarping = true;
|
|
|
|
focus.followMouse = false;
|
|
|
|
modifier = "Mod4";
|
|
|
|
window = {
|
|
|
|
border = 1;
|
|
|
|
titlebar = false;
|
|
|
|
hideEdgeBorders = "smart";
|
|
|
|
commands = [
|
|
|
|
{
|
|
|
|
command = "border pixel 2px";
|
|
|
|
criteria = { window_role = "popup"; };
|
|
|
|
}
|
|
|
|
{
|
|
|
|
command = "floating disable";
|
|
|
|
criteria = { class = "pavucontrol-qt"; };
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
2019-09-22 13:35:49 +04:00
|
|
|
startup = map (a: { notification = false; } // a) [
|
|
|
|
{ command = "${pkgs.xorg.xrdb}/bin/xrdb -merge ~/.Xresources"; }
|
|
|
|
];
|
2019-09-11 17:17:56 +04:00
|
|
|
keybindings = let
|
|
|
|
moveMouse = ''
|
|
|
|
"sh -c 'eval `${pkgs.xdotool}/bin/xdotool \
|
|
|
|
getactivewindow \
|
|
|
|
getwindowgeometry --shell`; ${pkgs.xdotool}/bin/xdotool \
|
|
|
|
mousemove \
|
|
|
|
$((X+WIDTH/2)) $((Y+HEIGHT/2))'"'';
|
|
|
|
in ({
|
|
|
|
"${modifier}+q" = "kill";
|
2019-09-15 00:19:40 +04:00
|
|
|
"${modifier}+w" = "exec ${apps.dmenu.cmd}";
|
2019-09-11 17:17:56 +04:00
|
|
|
"${modifier}+Return" = "exec ${apps.term.cmd}";
|
2019-09-22 01:32:26 +04:00
|
|
|
"${modifier}+e" = "exec ${apps.editor.cmd}";
|
|
|
|
"${modifier}+y" = "exec ${pkgs.youtube-to-mpv}/bin/yt-mpv";
|
|
|
|
"${modifier}+Shift+y" = "exec ${pkgs.youtube-to-mpv}/bin/yt-mpv --no-video";
|
2019-09-11 17:17:56 +04:00
|
|
|
"${modifier}+l" = "layout toggle";
|
|
|
|
"${modifier}+Left" = "focus child; focus left; exec ${moveMouse}";
|
|
|
|
"${modifier}+Right" = "focus child; focus right; exec ${moveMouse}";
|
|
|
|
"${modifier}+Up" = "focus child; focus up; exec ${moveMouse}";
|
|
|
|
"${modifier}+Down" = "focus child; focus down; exec ${moveMouse}";
|
|
|
|
"${modifier}+Control+Left" =
|
|
|
|
"focus parent; focus left; exec ${moveMouse}";
|
|
|
|
"${modifier}+Control+Right" =
|
|
|
|
"focus parent; focus right; exec ${moveMouse}";
|
|
|
|
"${modifier}+Control+Up" =
|
|
|
|
"focus parent; focus up; exec ${moveMouse}";
|
|
|
|
"${modifier}+Control+Down" =
|
|
|
|
"focus parent; focus down; exec ${moveMouse}";
|
|
|
|
"${modifier}+Shift+Up" = "move up";
|
|
|
|
"${modifier}+Shift+Down" = "move down";
|
|
|
|
"${modifier}+Shift+Right" = "move right";
|
|
|
|
"${modifier}+Shift+Left" = "move left";
|
|
|
|
"${modifier}+f" = "fullscreen toggle";
|
|
|
|
"${modifier}+r" = "mode resize";
|
|
|
|
"${modifier}+Shift+f" = "floating toggle";
|
|
|
|
"${modifier}+d" = "exec ${apps.fm.cmd}";
|
|
|
|
"${modifier}+Escape" = "exec ${apps.monitor.cmd}";
|
2019-09-22 01:32:26 +04:00
|
|
|
"${modifier}+Print" = "exec ${pkgs.maim}/bin/maim -s ~/Pictures/$(date +%s).png";
|
|
|
|
"${modifier}+Control+Print" = "exec ${pkgs.maim}/bin/maim -s | xclip -selection clipboard -t image/png";
|
2019-09-11 17:17:56 +04:00
|
|
|
"--release ${modifier}+Shift+Print" =
|
2019-09-22 01:32:26 +04:00
|
|
|
"exec ${pkgs.maim}/bin/maim ~/Pictures/$(date +%s).png";
|
2019-09-11 17:17:56 +04:00
|
|
|
"--release ${modifier}+Control+Shift+Print" =
|
2019-09-22 01:32:26 +04:00
|
|
|
"exec ${pkgs.maim}/bin/maim | xclip -selection clipboard -t image/png";
|
2019-09-11 17:17:56 +04:00
|
|
|
"${modifier}+x" = "move workspace to output right";
|
|
|
|
"${modifier}+c" = "workspace ";
|
|
|
|
"${modifier}+Shift+c" = "move container to workspace ";
|
|
|
|
"${modifier}+t" = "workspace ";
|
|
|
|
"${modifier}+Shift+t" = "move container to workspace ";
|
|
|
|
"${modifier}+m" = "workspace ﱘ";
|
|
|
|
"${modifier}+Shift+m" = "move container to workspace ﱘ";
|
|
|
|
"${modifier}+k" = "exec '${pkgs.xorg.xkill}/bin/xkill'";
|
|
|
|
"${modifier}+F5" = "restart";
|
|
|
|
"${modifier}+Shift+F5" = "exit";
|
|
|
|
"${modifier}+Shift+h" = "layout splith";
|
|
|
|
"${modifier}+Shift+v" = "layout splitv";
|
|
|
|
"${modifier}+h" = "split h";
|
|
|
|
"${modifier}+v" = "split v";
|
|
|
|
"${modifier}+F1" = "move to scratchpad";
|
|
|
|
"${modifier}+F2" = "scratchpad show";
|
|
|
|
"${modifier}+i" =
|
|
|
|
"exec sh -c 'xclip -selection clipboard -out | curl -F \"f:1=<-\" ix.io | xclip -selection clipboard -in'";
|
|
|
|
# "${modifier}+z" = "exec ${pkgs.lambda-launcher}/bin/lambda-launcher";
|
|
|
|
"XF86AudioPlay" = "exec ${pkgs.playerctl}/bin/playerctl play-pause";
|
|
|
|
"XF86AudioNext" = "exec ${pkgs.playerctl}/bin/playerctl next";
|
|
|
|
"XF86AudioPrev" = "exec ${pkgs.playerctl}/bin/playerctl previous";
|
|
|
|
"--release button2" = "kill";
|
|
|
|
"--whole-window ${modifier}+button2" = "kill";
|
|
|
|
} // builtins.listToAttrs (builtins.genList (x: {
|
2019-09-20 02:08:15 +04:00
|
|
|
name = "${modifier}+${toString (x + 1)}";
|
|
|
|
value = "workspace ${toString (x + 1)}";
|
|
|
|
}) 9) // builtins.listToAttrs (builtins.genList (x: {
|
|
|
|
name = "${modifier}+Shift+${toString (x + 1)}";
|
|
|
|
value = "move container to workspace ${toString (x + 1)}";
|
|
|
|
}) 9));
|
2019-09-11 17:17:56 +04:00
|
|
|
keycodebindings = {
|
2019-09-15 00:19:40 +04:00
|
|
|
"122" = "exec ${pkgs.pamixer}/bin/pamixer -d 5";
|
|
|
|
"123" = "exec ${pkgs.pamixer}/bin/pamixer -i 5";
|
2019-09-11 17:17:56 +04:00
|
|
|
"121" = "exec ${pkgs.pamixer}/bin/pamixer -t";
|
|
|
|
};
|
|
|
|
workspaceLayout = "tabbed";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|