2025-02-02 19:55:22 +01:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
options = {
|
|
|
|
crony.hyprland.enable = lib.mkEnableOption "Enable hyprland and configure it for me";
|
|
|
|
};
|
|
|
|
|
|
|
|
config = lib.mkIf config.crony.hyprland.enable {
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
(writeShellScriptBin "tofi-pass" ''
|
|
|
|
tofi --hide-input true --prompt-text 'Password: ' --require-match false --hidden-character '.' < /dev/null
|
|
|
|
'')
|
|
|
|
cliphist
|
|
|
|
wl-clipboard
|
2025-02-02 23:59:21 +01:00
|
|
|
xwaylandvideobridge
|
2025-02-02 19:55:22 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
# Enable and setup tofi
|
|
|
|
programs.tofi = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
anchor = "top";
|
|
|
|
width = "100%";
|
|
|
|
height = "28";
|
|
|
|
horizontal = true;
|
|
|
|
history = false;
|
|
|
|
require-match = false;
|
|
|
|
terminal = "foot";
|
|
|
|
outline-width = 0;
|
|
|
|
border-width = 0;
|
|
|
|
min-input-width = 120;
|
|
|
|
result-spacing = 15;
|
|
|
|
padding-top = 4;
|
|
|
|
padding-bottom = 0;
|
|
|
|
padding-left = 5;
|
|
|
|
padding-right = 5;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2025-02-03 14:49:27 +01:00
|
|
|
# Setup and enable mako
|
|
|
|
services.mako = {
|
|
|
|
enable = true;
|
|
|
|
defaultTimeout = 5;
|
|
|
|
};
|
|
|
|
|
2025-02-02 19:55:22 +01:00
|
|
|
# Enable hyprpaper
|
|
|
|
services.hyprpaper.enable = true;
|
|
|
|
|
|
|
|
# Enable hypridle
|
|
|
|
services.hypridle = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
general = {
|
|
|
|
lock_cmd = "pidof hyprlock || hyprlock"; # avoid starting multiple hyprlock instances.
|
|
|
|
before_sleep_cmd = "loginctl lock-session"; # lock before suspend.
|
|
|
|
after_sleep_cmd = "hyprctl dispatch dpms on"; # to avoid having to press a key twice to turn on the display.
|
|
|
|
};
|
|
|
|
|
|
|
|
listener = [
|
|
|
|
{
|
2025-02-03 14:23:30 +01:00
|
|
|
timeout = 10; # 10 sec
|
|
|
|
on-timeout = "pidof hyprlock && hyprctl dispatch dpms off"; # Turn off screen if hyprlock is running
|
|
|
|
on-resume = "hyprctl dispatch dpms on"; # Turn on screen when activiy is detected after timeout has fired
|
2025-02-02 19:55:22 +01:00
|
|
|
}
|
|
|
|
{
|
2025-02-03 14:23:30 +01:00
|
|
|
timeout = 300; # 5min
|
|
|
|
on-timeout = "loginctl lock-session"; # lock screen when timeout has passed
|
2025-02-02 19:55:22 +01:00
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
# Enable hyprlock
|
|
|
|
programs.hyprlock = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
general = {
|
|
|
|
disable_loading_bar = true;
|
2025-02-03 14:23:30 +01:00
|
|
|
grace = 0;
|
2025-02-02 19:55:22 +01:00
|
|
|
hide_cursor = true;
|
|
|
|
no_fade_in = false;
|
|
|
|
};
|
2025-02-03 14:04:26 +01:00
|
|
|
|
|
|
|
image = {
|
|
|
|
path = "$HOME/.face";
|
|
|
|
size = 150;
|
|
|
|
border_size = 4;
|
|
|
|
border_color = "rgb(d5c4a1)";
|
|
|
|
position = "0, 285";
|
|
|
|
halign = "center";
|
|
|
|
valign = "center";
|
|
|
|
};
|
|
|
|
|
|
|
|
label = [
|
|
|
|
{
|
|
|
|
text = "$TIME";
|
|
|
|
font_size = 90;
|
|
|
|
color = "rgb(d5c4a1)";
|
|
|
|
position = "0, 165";
|
|
|
|
halign = "center";
|
|
|
|
valight = "center";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
text = ''cmd[update:43200000] date +"%Y %m %d"'';
|
|
|
|
font_size = 25;
|
|
|
|
color = "rgb(d5c4a1)";
|
|
|
|
position = "0, -225";
|
|
|
|
halign = "center";
|
|
|
|
valign = "center";
|
|
|
|
}
|
|
|
|
];
|
2025-02-02 19:55:22 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
# Setup and enable hyprland
|
|
|
|
wayland.windowManager.hyprland = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
systemd.enable = false; # Using USWM globally
|
|
|
|
|
|
|
|
settings = {
|
|
|
|
"$mod" = "SUPER";
|
|
|
|
"$menu" = "tofi";
|
|
|
|
"$terminal" = "foot";
|
|
|
|
|
|
|
|
exec-once = [
|
|
|
|
"wl-paste --type text --watch cliphist store" # Stores only text data
|
|
|
|
"wl-paste --type image --watch cliphist store" # Stores only image data
|
2025-02-02 22:56:09 +01:00
|
|
|
"keepassxc" # Startup my password manager
|
2025-02-02 19:55:22 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
monitor = [
|
|
|
|
"HDMI-A-1, 1920x1080@144, 0x0, 1"
|
|
|
|
];
|
|
|
|
|
|
|
|
animations = {
|
|
|
|
enabled = "yes";
|
|
|
|
};
|
|
|
|
|
|
|
|
decoration = {
|
|
|
|
blur = {
|
|
|
|
enabled = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
shadow = {
|
|
|
|
enabled = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
rounding = 10;
|
|
|
|
};
|
|
|
|
|
|
|
|
general = {
|
|
|
|
border_size = 5;
|
|
|
|
layout = "master";
|
|
|
|
allow_tearing = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
input = {
|
|
|
|
kb_layout = "us";
|
|
|
|
kb_options = "caps:escape";
|
|
|
|
};
|
|
|
|
|
|
|
|
master = {
|
|
|
|
mfact = "0.5";
|
|
|
|
new_status = "slave";
|
|
|
|
};
|
|
|
|
|
|
|
|
binds = {
|
|
|
|
allow_workspace_cycles = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
bind = [
|
|
|
|
"$mod, Return, exec, $terminal"
|
|
|
|
"$mod SHIFT, Q, killactive"
|
|
|
|
"$mod CTRL, E, exit"
|
|
|
|
"$mod SHIFT, Space, togglefloating"
|
|
|
|
"$mod, D, exec, tofi-run | xargs hyprctl dispatch exec --"
|
|
|
|
"$mod SHIFT, D, exec, tofi-drun | xargs hyprctl dispatch exec --"
|
|
|
|
|
2025-02-03 14:23:30 +01:00
|
|
|
"$mod, L, exec, hyprlock --immediate"
|
|
|
|
|
2025-02-02 19:55:22 +01:00
|
|
|
"$mod, V, exec, cliphist list | tofi --horizontal false --height 380 | cliphist decode | wl-copy"
|
|
|
|
|
|
|
|
"$mod, j, layoutmsg, cyclenext"
|
|
|
|
"$mod, k, layoutmsg, cycleprev"
|
|
|
|
"$mod SHIFT, j, layoutmsg, swapnext"
|
|
|
|
"$mod SHIFT, k, layoutmsg, swapprev"
|
|
|
|
|
|
|
|
"$mod, h, layoutmsg, mfact -0.05"
|
|
|
|
"$mod, l, layoutmsg, mfact +0.05"
|
|
|
|
|
|
|
|
"$mod, Tab, workspace, previous"
|
|
|
|
|
|
|
|
"$mod, 1, workspace, 1"
|
|
|
|
"$mod, 2, workspace, 2"
|
|
|
|
"$mod, 3, workspace, 3"
|
|
|
|
"$mod, 4, workspace, 4"
|
|
|
|
"$mod, 5, workspace, 5"
|
|
|
|
"$mod, 6, workspace, 6"
|
|
|
|
"$mod, 7, workspace, 7"
|
|
|
|
"$mod, 8, workspace, 8"
|
|
|
|
"$mod, 9, workspace, 9"
|
|
|
|
|
|
|
|
"$mod SHIFT, 1, movetoworkspacesilent, 1"
|
|
|
|
"$mod SHIFT, 2, movetoworkspacesilent, 2"
|
|
|
|
"$mod SHIFT, 3, movetoworkspacesilent, 3"
|
|
|
|
"$mod SHIFT, 4, movetoworkspacesilent, 4"
|
|
|
|
"$mod SHIFT, 5, movetoworkspacesilent, 5"
|
|
|
|
"$mod SHIFT, 6, movetoworkspacesilent, 6"
|
|
|
|
"$mod SHIFT, 7, movetoworkspacesilent, 7"
|
|
|
|
"$mod SHIFT, 8, movetoworkspacesilent, 8"
|
|
|
|
"$mod SHIFT, 9, movetoworkspacesilent, 9"
|
|
|
|
];
|
|
|
|
|
|
|
|
bindel = [
|
|
|
|
", XF86AudioRaiseVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+"
|
|
|
|
", XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"
|
|
|
|
", XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"
|
|
|
|
];
|
|
|
|
|
|
|
|
# Requires playerctl
|
|
|
|
bindl = [
|
|
|
|
", XF86AudioPlay, exec, playerctl play-pause"
|
|
|
|
", XF86AudioPrev, exec, playerctl previous"
|
|
|
|
", XF86AudioNext, exec, playerctl next"
|
|
|
|
|
|
|
|
'', switch:off:Lid Switch,exec,hyprctl keyword monitor "eDP-1, 1920x1080, 0x0, 1"''
|
|
|
|
'', switch:on:Lid Switch,exec,hyprctl keyword monitor "eDP-1, disable"''
|
|
|
|
];
|
|
|
|
|
|
|
|
bindm = [
|
|
|
|
# mouse movements
|
|
|
|
"$mod, mouse:272, movewindow"
|
|
|
|
"$mod, mouse:273, resizewindow"
|
|
|
|
"$mod ALT, mouse:272, resizewindow"
|
|
|
|
];
|
|
|
|
|
|
|
|
windowrulev2 = [
|
|
|
|
# Hide xwaylandvideobridge
|
|
|
|
"opacity 0.0 override, class:^(xwaylandvideobridge)$"
|
|
|
|
"noanim, class:^(xwaylandvideobridge)$"
|
|
|
|
"noinitialfocus, class:^(xwaylandvideobridge)$"
|
|
|
|
"maxsize 1 1, class:^(xwaylandvideobridge)$"
|
|
|
|
"noblur, class:^(xwaylandvideobridge)$"
|
|
|
|
"nofocus, class:^(xwaylandvideobridge)$"
|
|
|
|
|
|
|
|
# Allow tearing for sifu
|
|
|
|
"immediate, class:^(steam_app_2138710)$"
|
2025-02-03 14:31:31 +01:00
|
|
|
|
|
|
|
# Make workspace 6 a floating layout
|
|
|
|
"float, workspace:6"
|
2025-02-02 19:55:22 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|