2024-01-19 14:36:08 +00:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
colors = import ./colors.nix;
|
|
|
|
in {
|
|
|
|
home-manager.users.buffet = {
|
|
|
|
wayland.windowManager.sway = {
|
|
|
|
enable = true;
|
|
|
|
systemd.enable = true;
|
|
|
|
wrapperFeatures.gtk = true;
|
|
|
|
|
|
|
|
config = let
|
|
|
|
mod = "Mod4";
|
|
|
|
in {
|
|
|
|
input."*" = {
|
|
|
|
xkb_layout = "us";
|
|
|
|
xkb_options = "compose:prsc";
|
|
|
|
};
|
|
|
|
|
|
|
|
seat."*" = {hide_cursor = "when-typing enable";};
|
|
|
|
floating.modifier = mod;
|
|
|
|
|
|
|
|
# TODO: screenshot keybinds
|
|
|
|
keybindings = let
|
|
|
|
makeWorkspaceBinds = num: let
|
|
|
|
ws = toString num;
|
|
|
|
in {
|
|
|
|
"${mod}+${ws}" = "workspace ${ws}";
|
|
|
|
"${mod}+Shift+${ws}" = "move container to workspace ${ws}";
|
|
|
|
};
|
|
|
|
|
|
|
|
joinAttrSets = builtins.foldl' (x: y: x // y) {};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
"${mod}+Return" = "exec ${pkgs.foot}/bin/foot";
|
|
|
|
"${mod}+i" = "exec ${pkgs.firefox-wayland}/bin/firefox";
|
|
|
|
"${mod}+Shift+y" = "exec swaylock";
|
2024-01-24 15:26:14 +00:00
|
|
|
"${mod}+d" = "exec ${pkgs.wofi}/bin/wofi --show drun"; # TODO: config
|
2024-01-19 14:36:08 +00:00
|
|
|
|
|
|
|
"${mod}+z" = "exec ${pkgs.light}/bin/light -U 0.5";
|
|
|
|
"${mod}+x" = "exec ${pkgs.light}/bin/light -A 0.5";
|
|
|
|
"${mod}+Shift+z" = "exec ${pkgs.light}/bin/light -U 5";
|
|
|
|
"${mod}+Shift+x" = "exec ${pkgs.light}/bin/light -A 5";
|
|
|
|
|
2024-01-21 13:22:13 +00:00
|
|
|
"${mod}+Shift+q" = "kill";
|
2024-01-19 14:36:08 +00:00
|
|
|
"${mod}+Shift+c" = "reload";
|
|
|
|
"${mod}+Shift+e" = "exit";
|
|
|
|
|
|
|
|
"${mod}+h" = "focus left";
|
|
|
|
"${mod}+j" = "focus down";
|
|
|
|
"${mod}+k" = "focus up";
|
|
|
|
"${mod}+l" = "focus right";
|
|
|
|
|
|
|
|
"${mod}+Left" = "focus left";
|
|
|
|
"${mod}+Down" = "focus down";
|
|
|
|
"${mod}+Up" = "focus up";
|
|
|
|
"${mod}+Right" = "focus right";
|
|
|
|
|
|
|
|
"${mod}+Shift+h" = "move left";
|
|
|
|
"${mod}+Shift+j" = "move down";
|
|
|
|
"${mod}+Shift+k" = "move up";
|
|
|
|
"${mod}+Shift+l" = "move right";
|
|
|
|
|
|
|
|
"${mod}+o" = "splith";
|
|
|
|
"${mod}+u" = "splitv";
|
|
|
|
|
|
|
|
"${mod}+s" = "layout stacking";
|
|
|
|
"${mod}+t" = "layout tabbed";
|
|
|
|
"${mod}+e" = "layout toggle split";
|
|
|
|
"${mod}+f" = "fullscreen";
|
|
|
|
|
|
|
|
"${mod}+Shift+space" = "floating toggle";
|
|
|
|
|
|
|
|
"${mod}+Shift+minus" = "move scratchpad";
|
|
|
|
"${mod}+minus" = "scratchpad show";
|
|
|
|
}
|
|
|
|
// (joinAttrSets (map makeWorkspaceBinds (lib.range 1 9)));
|
|
|
|
|
|
|
|
output."*" = {
|
|
|
|
bg = "${colors.wallpaper} solid_color";
|
|
|
|
};
|
|
|
|
|
|
|
|
gaps = {
|
|
|
|
inner = 12;
|
|
|
|
left = 8;
|
|
|
|
right = 8;
|
|
|
|
bottom = 8;
|
|
|
|
top = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
window.border = 1;
|
|
|
|
fonts = {
|
|
|
|
names = ["APL386 Unicode"];
|
2024-01-21 13:22:13 +00:00
|
|
|
style = "Regular";
|
2024-01-19 14:36:08 +00:00
|
|
|
size = 8.0;
|
|
|
|
};
|
|
|
|
|
|
|
|
colors = rec {
|
|
|
|
focused = rec {
|
|
|
|
border = colors.focused;
|
|
|
|
childBorder = border;
|
|
|
|
background = border;
|
|
|
|
text = border;
|
|
|
|
indicator = border;
|
|
|
|
};
|
|
|
|
|
|
|
|
unfocused = rec {
|
|
|
|
border = colors.unfocused;
|
|
|
|
childBorder = border;
|
|
|
|
background = border;
|
|
|
|
text = border;
|
|
|
|
indicator = border;
|
|
|
|
};
|
|
|
|
|
|
|
|
focusedInactive = unfocused;
|
|
|
|
};
|
|
|
|
|
|
|
|
bars = [
|
|
|
|
{
|
|
|
|
position = "top";
|
|
|
|
|
|
|
|
fonts = {
|
|
|
|
names = ["APL386 Unicode"];
|
2024-01-21 13:22:13 +00:00
|
|
|
style = "Regular";
|
2024-01-19 14:36:08 +00:00
|
|
|
size = 8.0;
|
|
|
|
};
|
|
|
|
|
|
|
|
statusCommand = toString (pkgs.writeScript "status_command" ''
|
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
while :; do
|
|
|
|
energy_full=0
|
|
|
|
energy_now=0
|
|
|
|
charging=
|
|
|
|
|
|
|
|
for bat in /sys/class/power_supply/*/capacity; do
|
|
|
|
bat="''${bat%/*}"
|
|
|
|
read -r full <"$bat/energy_full"
|
|
|
|
read -r now <"$bat/energy_now"
|
|
|
|
energy_full=$((energy_full + full))
|
|
|
|
energy_now=$((energy_now + now))
|
|
|
|
done
|
|
|
|
|
|
|
|
if cat /sys/class/power_supply/*/status | grep -q Charging; then
|
|
|
|
charging=+
|
|
|
|
fi
|
|
|
|
|
|
|
|
percentage=$((energy_now * 100 / energy_full))
|
|
|
|
|
|
|
|
printf '%s %s ' "$charging$percentage%" "$(date +'%H:%M:%S')"
|
|
|
|
sleep 1
|
|
|
|
done
|
|
|
|
'');
|
|
|
|
|
|
|
|
colors = rec {
|
|
|
|
statusline = colors.primary.foreground;
|
|
|
|
inherit (colors.primary) background;
|
|
|
|
|
|
|
|
focusedWorkspace = rec {
|
|
|
|
background = colors.focused;
|
|
|
|
border = background;
|
|
|
|
text = colors.primary.background;
|
|
|
|
};
|
|
|
|
|
|
|
|
inactiveWorkspace = rec {
|
|
|
|
inherit (colors.primary) background;
|
|
|
|
border = background;
|
|
|
|
text = colors.primary.foreground;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
extraConfig = ''
|
|
|
|
gaps 16 20
|
|
|
|
'';
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
extraConfig = ''
|
|
|
|
for_window [title="."] title_format ""
|
|
|
|
for_window [title="^oyster$"] floating enable
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
# TODO: use colors.nix
|
|
|
|
programs.swaylock = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
ignore-empty-password = true;
|
|
|
|
color = "#ffffff";
|
|
|
|
key-hl-color = "#3cc970";
|
|
|
|
bs-hl-color = "#e96161";
|
|
|
|
caps-lock-key-hl-color = "#3cc970";
|
|
|
|
caps-lock-bs-hl-color = "#e96161";
|
|
|
|
inside-color = "#ffffff";
|
|
|
|
inside-clear-color = "#ffffff";
|
|
|
|
inside-caps-lock-color = "#ffffff";
|
|
|
|
inside-ver-color = "#ffffff";
|
|
|
|
inside-wrong-color = "#ffffff";
|
|
|
|
ring-color = "#ffffff";
|
|
|
|
ring-clear-color = "#ffffff";
|
|
|
|
ring-caps-lock-color = "#ffffff";
|
|
|
|
ring-ver-color = "#ffffff";
|
|
|
|
ring-wrong-color = "#ffffff";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|