nix sway - WIP

This commit is contained in:
genofire 2021-10-07 22:32:45 +02:00
parent ade4d71dc7
commit e49a46d90b
1 changed files with 69 additions and 18 deletions

View File

@ -1,4 +1,4 @@
{ pkgs, ... }: { config, pkgs, ... }:
{ {
home.sessionVariables = { home.sessionVariables = {
@ -25,27 +25,78 @@
slurp slurp
]; ];
#wayland.windowManager.sway = { wayland.windowManager.sway =
# enable = true; let
# xwayland = false; ws1="1💬";
# config = { #ws2="2📝";
ws2="2🌟";
ws3="3🍁";
ws4="4🍀";
ws5="5🌈";
ws6="6💎";
ws7="7🎥";
ws8="8🌍";
ws9="9🔒";
ws10="10🌀";
modifier = config.wayland.windowManager.sway.config.modifier;
in {
enable = false;
xwayland = false;
config = {
terminal = "alacritty";
menu = "bemenu-run -i -p 'Run:' --fn 'pango:monospace 7'";
bars = [{
position = "top";
}];
#keybinding = [ #keybinding = [
#]; #];
# }; assigns = {
#}; "${ws1}" = [
{ app_id = "(?i)empathy"; }
{ app_id = "(?i)gajim"; }
{ app_id = "(?i)dino"; }
{ app_id = "(?i)pidgin"; }
];
"${ws2}" = [
{ app_id = "(?i)thunderbird"; }
{ app_id = "(?i)evolution"; }
];
"${ws4}" = [
{ app_id = "(?i)atril"; }
{ app_id = "(?i)evince"; }
];
"${ws7}" = [
{ app_id = "(?i)mpv"; }
];
"${ws8}" = [
{ app_id = "(?i)firefox"; }
{ app_id = "(?i)firefoxdeveloperedition"; }
];
};
window.commands = [
{ command = "move to scratchpad"; criteria = { title = "Firefox.* Sharing Indicator"; }; }
{ command = "sticky enable"; criteria = { title = "Picture-in-Picture"; }; }
{ command = "floating enable"; criteria = { title = "Picture-in-Picture"; }; }
{ command = "floating enable"; criteria = { title = "Extension: \(Tree Style Tab\) - .*"; }; }
];
};
};
services.gammastep = { services.gammastep = {
enable = true; enable = true;
provider = "geoclue2"; provider = "geoclue2";
# duskTime = "22:00-23:00"; # duskTime = "22:00-23:00";
# dawnTime = "6:00-10:00"; # dawnTime = "6:00-10:00";
}; };
#programs.alacritty = {
# enable = true; programs.alacritty = {
# settings = { enable = false;
# background_opacity = 0.95; settings = {
# font.size = 8; background_opacity = 0.95;
# schemes.base16.primary.background = "0x0a0a0a"; font.size = 8;
# colors = "*base16"; schemes.base16.primary.background = "0x0a0a0a";
# }; colors = "*base16";
#}; };
};
} }