2024-09-01 20:11:59 +02:00
|
|
|
{
|
2024-09-09 05:54:29 +02:00
|
|
|
nixosConfig,
|
2024-09-01 20:11:59 +02:00
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
2023-06-17 02:01:27 +02:00
|
|
|
|
2023-06-26 18:02:44 +02:00
|
|
|
let
|
2024-09-09 05:54:29 +02:00
|
|
|
inherit (nixosConfig._module.specialArgs) nix-config;
|
|
|
|
|
2024-07-05 20:09:52 +02:00
|
|
|
inherit (lib) mkForce;
|
2024-09-18 20:28:23 +02:00
|
|
|
|
|
|
|
inherit (nix-config.packages.${pkgs.system})
|
|
|
|
osu-backgrounds
|
|
|
|
dunst-scripts
|
|
|
|
;
|
2024-04-06 17:35:34 +02:00
|
|
|
|
2024-04-02 23:17:01 +02:00
|
|
|
opacity = "0.95";
|
2024-04-02 21:46:56 +02:00
|
|
|
super = "SUPER";
|
2024-04-06 04:51:24 +02:00
|
|
|
|
2024-07-07 19:19:20 +02:00
|
|
|
gapsScript = "hypr/gaps.fish";
|
2024-04-06 04:51:24 +02:00
|
|
|
randomBackgroundScript = "hypr/random-bg.fish";
|
|
|
|
swapBackgroundScript = "hypr/swap-bg.fish";
|
2024-04-07 16:41:16 +02:00
|
|
|
setBackgroundScript = "hypr/set-bg.fish";
|
2024-07-08 17:24:34 +02:00
|
|
|
monitorScript = "hypr/monitor-script.fish";
|
2023-06-26 18:02:44 +02:00
|
|
|
in
|
2023-06-22 16:42:23 +02:00
|
|
|
{
|
2024-04-06 16:19:02 +02:00
|
|
|
home.packages = with pkgs; [
|
2024-04-05 02:02:51 +02:00
|
|
|
hyprdim
|
2024-03-08 04:14:48 +01:00
|
|
|
hyprnome
|
2024-04-05 02:02:51 +02:00
|
|
|
swww
|
|
|
|
grimblast
|
2024-04-06 16:19:02 +02:00
|
|
|
brightnessctl
|
|
|
|
mpvpaper
|
|
|
|
lnch
|
|
|
|
wev
|
|
|
|
wf-recorder
|
2024-10-12 05:41:20 +02:00
|
|
|
playerctl
|
2024-03-08 04:14:48 +01:00
|
|
|
];
|
2023-08-30 22:13:44 +02:00
|
|
|
|
2024-03-29 19:46:11 +01:00
|
|
|
wayland.windowManager.hyprland = {
|
|
|
|
enable = true;
|
|
|
|
|
2024-04-02 21:59:57 +02:00
|
|
|
settings = {
|
2024-04-02 21:46:56 +02:00
|
|
|
env = [
|
|
|
|
"BROWSER,librewolf"
|
|
|
|
"QT_IM_MODULE,fcitx"
|
|
|
|
"XMODIFIERS,@im=fcitx"
|
|
|
|
"SDL_IM_MODULE,fcitx"
|
|
|
|
"GLFW_IM_MODULE,ibus"
|
|
|
|
"SWWW_TRANSITION,grow"
|
|
|
|
"SWWW_TRANSITION_STEP,200"
|
|
|
|
"SWWW_TRANSITION_DURATION,1.5"
|
|
|
|
"SWWW_TRANSITION_FPS,240"
|
|
|
|
"SWWW_TRANSITION_WAVE,80,40"
|
2024-08-03 18:56:10 +02:00
|
|
|
"QT_QPA_PLATFORMTHEME,qt5ct"
|
|
|
|
"QT_STYLE_OVERRIDE,kvantum"
|
2024-04-02 21:46:56 +02:00
|
|
|
];
|
|
|
|
|
2024-07-08 16:36:47 +02:00
|
|
|
monitor = [
|
|
|
|
",preferred,auto,1"
|
|
|
|
"eDP-1,preferred,auto-left,1"
|
|
|
|
"HDMI-A-1,highrr,auto-right,1"
|
|
|
|
];
|
2024-04-02 21:46:56 +02:00
|
|
|
|
|
|
|
exec-once = [
|
2024-04-29 19:12:17 +02:00
|
|
|
"sleep 0.1; swww-daemon"
|
2024-04-02 21:46:56 +02:00
|
|
|
"ironbar"
|
|
|
|
"fcitx5"
|
|
|
|
"hyprctl dispatch workspace 5000000"
|
2024-08-07 22:32:53 +02:00
|
|
|
"${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1"
|
2024-10-27 05:52:36 +01:00
|
|
|
"hyprdim"
|
2024-04-06 04:51:24 +02:00
|
|
|
"~/.config/${randomBackgroundScript}"
|
2024-04-02 21:46:56 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
input = {
|
|
|
|
kb_layout = "us";
|
|
|
|
repeat_rate = 50;
|
|
|
|
repeat_delay = 300;
|
|
|
|
|
|
|
|
accel_profile = "flat";
|
|
|
|
follow_mouse = 1;
|
|
|
|
sensitivity = 0;
|
|
|
|
mouse_refocus = false;
|
|
|
|
|
|
|
|
touchpad = {
|
|
|
|
natural_scroll = true;
|
|
|
|
disable_while_typing = false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
general = {
|
2024-04-08 15:08:03 +02:00
|
|
|
gaps_in = 0;
|
|
|
|
gaps_out = 0;
|
|
|
|
border_size = 0;
|
2024-07-14 22:32:42 +02:00
|
|
|
layout = "master";
|
2024-04-02 21:46:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
decoration = {
|
2024-04-08 15:08:03 +02:00
|
|
|
rounding = 0;
|
2024-11-18 08:53:48 +01:00
|
|
|
|
|
|
|
shadow = {
|
|
|
|
range = 30;
|
|
|
|
render_power = 3;
|
|
|
|
};
|
2024-04-02 21:46:56 +02:00
|
|
|
|
|
|
|
blur = {
|
|
|
|
enabled = true;
|
2024-10-27 15:50:24 +01:00
|
|
|
size = 5;
|
2024-04-02 21:46:56 +02:00
|
|
|
passes = 2;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
animations = {
|
|
|
|
enabled = true;
|
|
|
|
bezier = "myBezier, 0.05, 0.9, 0.1, 1.05";
|
2024-11-18 05:15:23 +01:00
|
|
|
|
2024-04-02 21:46:56 +02:00
|
|
|
animation = [
|
|
|
|
"windows, 1, 7, myBezier"
|
|
|
|
"windowsOut, 1, 7, default, popin 80%"
|
|
|
|
"border, 1, 10, default"
|
|
|
|
"borderangle, 1, 8, default"
|
|
|
|
"fade, 1, 7, default"
|
|
|
|
"workspaces, 1, 6, default, slidevert"
|
|
|
|
"specialWorkspace, 1, 6, default, fade"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
dwindle = {
|
|
|
|
preserve_split = true;
|
|
|
|
special_scale_factor = 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
master = {
|
2024-11-19 06:50:54 +01:00
|
|
|
new_on_top = true;
|
|
|
|
new_status = "master";
|
2024-10-31 21:43:31 +01:00
|
|
|
mfact = 0.55;
|
2024-04-02 21:46:56 +02:00
|
|
|
special_scale_factor = 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
gestures = {
|
|
|
|
workspace_swipe = true;
|
2024-07-15 17:50:17 +02:00
|
|
|
};
|
|
|
|
|
2024-04-02 21:46:56 +02:00
|
|
|
device = [
|
|
|
|
{
|
|
|
|
name = "synps/2-synaptics-touchpad";
|
|
|
|
sensitivity = 0.75;
|
|
|
|
accel_profile = "flat";
|
|
|
|
natural_scroll = true;
|
|
|
|
disable_while_typing = false;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "tpps/2-elan-trackpoint";
|
|
|
|
sensitivity = 0.5;
|
|
|
|
accel_profile = "flat";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
binds = {
|
|
|
|
allow_workspace_cycles = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
layerrule = [
|
|
|
|
"blur,ironbar"
|
|
|
|
"blur,rofi"
|
|
|
|
"blur,notifications"
|
|
|
|
];
|
|
|
|
|
|
|
|
windowrulev2 = [
|
2024-07-20 17:38:22 +02:00
|
|
|
"nomaxsize,class:^(winecfg\.exe|osu\.exe)$"
|
2024-04-02 21:46:56 +02:00
|
|
|
"opaque,class:^(kitty)$"
|
2024-07-20 17:38:22 +02:00
|
|
|
"nodim,title:^(Picture-in-Picture|ピクチャーインピクチャー)$"
|
2024-04-02 21:46:56 +02:00
|
|
|
"nodim,class:^(mpv)$"
|
|
|
|
"tile,class:^(.qemu-system-x86_64-wrapped)$"
|
|
|
|
"opacity ${opacity} ${opacity},class:^(thunar)$"
|
2024-07-20 17:38:22 +02:00
|
|
|
"float,class:^(librewolf|Mullvad Browser)$"
|
|
|
|
"center 1,class:^(librewolf|Mullvad Browser)$"
|
2024-04-02 21:46:56 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
misc = {
|
|
|
|
disable_hyprland_logo = true;
|
|
|
|
animate_manual_resizes = true;
|
2024-07-04 15:35:14 +02:00
|
|
|
animate_mouse_windowdragging = true;
|
2024-04-02 21:46:56 +02:00
|
|
|
disable_autoreload = true;
|
|
|
|
new_window_takes_over_fullscreen = 1;
|
2024-06-13 11:42:08 +02:00
|
|
|
initial_workspace_tracking = 0;
|
2024-04-02 21:46:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
bind = [
|
|
|
|
"${super}_SHIFT, Return, exec, kitty"
|
|
|
|
"${super}_SHIFT, Q, killactive"
|
2024-04-06 04:51:24 +02:00
|
|
|
"${super}, W, exec, ~/.config/${randomBackgroundScript}"
|
|
|
|
"${super}_SHIFT, W, exec, ~/.config/${swapBackgroundScript}"
|
2024-08-16 04:26:12 +02:00
|
|
|
"${super}, P, exec, grimblast --notify save screen"
|
2024-04-02 21:46:56 +02:00
|
|
|
", Print, exec, grimblast --freeze copy area"
|
2024-09-08 19:51:16 +02:00
|
|
|
"${super}, bracketleft, exec, killall rofi || rofi -show"
|
2024-10-10 15:04:53 +02:00
|
|
|
"${super}, bracketright, exec, kitty yazi"
|
2024-04-02 21:46:56 +02:00
|
|
|
"${super}_ALT, delete, exit"
|
|
|
|
"${super}, V, togglefloating"
|
2024-04-06 04:51:24 +02:00
|
|
|
"${super}, U, exec, ~/.config/${gapsScript}"
|
2024-04-02 21:46:56 +02:00
|
|
|
"${super}, X, pin"
|
|
|
|
"${super}, F, fullscreen"
|
2024-07-12 00:03:52 +02:00
|
|
|
"${super}, Tab, exec, hyprctl dispatch overview:toggle"
|
2024-04-02 21:46:56 +02:00
|
|
|
"${super}, S, swapactiveworkspaces, 0 1"
|
|
|
|
"${super}_SHIFT, S, movetoworkspace, special"
|
2024-07-22 19:38:23 +02:00
|
|
|
"${super}, O, exec, killall .ironbar-wrapper inotifywait pactl || ironbar"
|
2024-04-02 21:46:56 +02:00
|
|
|
"${super}, M, focusmonitor, +1"
|
|
|
|
"${super}_SHIFT, M, focusmonitor, -1"
|
|
|
|
|
|
|
|
"${super}, Return, layoutmsg, swapwithmaster master"
|
|
|
|
"${super}, J, layoutmsg, cyclenext"
|
|
|
|
"${super}, K, layoutmsg, cycleprev"
|
|
|
|
"${super}_SHIFT, J, layoutmsg, swapnext"
|
|
|
|
"${super}_SHIFT, K, layoutmsg, swapprev"
|
|
|
|
"${super}, C, splitratio, exact 0.80"
|
|
|
|
"${super}, C, layoutmsg, orientationtop"
|
2024-10-31 21:43:31 +01:00
|
|
|
"${super}_SHIFT, C, splitratio, exact 0.55"
|
2024-04-02 21:46:56 +02:00
|
|
|
"${super}_SHIFT, C, layoutmsg, orientationleft"
|
|
|
|
"${super}, H, layoutmsg, addmaster"
|
|
|
|
"${super}, L, layoutmsg, removemaster"
|
|
|
|
"${super}_SHIFT, H, splitratio, -0.05"
|
|
|
|
"${super}_SHIFT, L, splitratio, +0.05"
|
|
|
|
"${super}_ALT, L, exec, hyprlock"
|
|
|
|
|
|
|
|
"${super}, 1, exec, hyprnome --previous"
|
|
|
|
"${super}, 2, exec, hyprnome"
|
|
|
|
"${super}_SHIFT, 1, exec, hyprnome --previous --move"
|
|
|
|
"${super}_SHIFT, 2, exec, hyprnome --move"
|
|
|
|
|
|
|
|
"${super}, mouse_down, workspace, e+1"
|
|
|
|
"${super}, mouse_up, workspace, e-1"
|
|
|
|
];
|
|
|
|
|
|
|
|
bindm = [
|
|
|
|
"${super}, mouse:272, movewindow"
|
|
|
|
"${super}, mouse:273, resizewindow"
|
|
|
|
];
|
|
|
|
|
|
|
|
bindl = [
|
2024-09-18 20:28:23 +02:00
|
|
|
", XF86AudioMute, exec, ${dunst-scripts}/bin/mv-mute"
|
|
|
|
", XF86AudioMicMute, exec, ${dunst-scripts}/bin/mv-mic"
|
|
|
|
", XF86MonBrightnessDown, exec, ${dunst-scripts}/bin/mb-down"
|
|
|
|
", XF86MonBrightnessUp, exec, ${dunst-scripts}/bin/mb-up"
|
2024-07-08 17:24:34 +02:00
|
|
|
", XF86Display, exec, ~/.config/${monitorScript}"
|
2024-10-12 05:41:20 +02:00
|
|
|
", XF86AudioPrev, exec, playerctl -p playerctld previous"
|
|
|
|
", XF86AudioNext, exec, playerctl -p playerctld next"
|
|
|
|
", XF86AudioPlay, exec, playerctl -p playerctld play"
|
|
|
|
", XF86AudioPause, exec, playerctl -p playerctld pause"
|
2024-07-15 18:18:55 +02:00
|
|
|
", XF86Messenger, togglespecialworkspace"
|
2024-04-02 21:46:56 +02:00
|
|
|
];
|
2024-10-27 15:33:03 +01:00
|
|
|
|
|
|
|
binde = [
|
|
|
|
", XF86AudioRaiseVolume, exec, ${dunst-scripts}/bin/mv-up"
|
|
|
|
", XF86AudioLowerVolume, exec, ${dunst-scripts}/bin/mv-down"
|
2024-11-18 05:15:23 +01:00
|
|
|
", XF86AudioForward, exec, playerctl -p playerctld position 10+"
|
|
|
|
", XF86AudioRewind, exec, playerctl -p playerctld position 10-"
|
2024-10-27 15:33:03 +01:00
|
|
|
];
|
2024-04-02 21:46:56 +02:00
|
|
|
};
|
|
|
|
|
2024-08-03 20:22:47 +02:00
|
|
|
extraConfig = # hyprlang
|
|
|
|
''
|
2024-08-25 18:37:45 +02:00
|
|
|
bind = ${super}_ALT, BackSpace, submap, passthrough
|
2024-08-03 20:22:47 +02:00
|
|
|
submap = passthrough
|
2024-08-25 18:37:45 +02:00
|
|
|
bind = ${super}_ALT, BackSpace, submap, reset
|
2024-08-03 20:22:47 +02:00
|
|
|
submap = reset
|
|
|
|
'';
|
2024-03-29 19:46:11 +01:00
|
|
|
};
|
|
|
|
|
2024-08-03 07:51:58 +02:00
|
|
|
xdg.configFile = {
|
|
|
|
${gapsScript} = {
|
|
|
|
executable = true;
|
2024-08-03 20:22:47 +02:00
|
|
|
text = # fish
|
|
|
|
''
|
|
|
|
#!/usr/bin/env fish
|
|
|
|
|
|
|
|
hyprctl keyword general:gaps_out $(math 10 - $(hyprctl getoption general:gaps_out -j | jq -r ".custom" | choose 1))
|
|
|
|
hyprctl keyword general:gaps_in $(math 5 - $(hyprctl getoption general:gaps_in -j | jq -r ".custom" | choose 1))
|
|
|
|
hyprctl keyword general:border_size $(math 2 - $(hyprctl getoption general:border_size -j | jq -r ".int"))
|
|
|
|
hyprctl keyword decoration:rounding $(math 8 - $(hyprctl getoption decoration:rounding -j | jq -r ".int"))
|
|
|
|
'';
|
2024-08-03 07:51:58 +02:00
|
|
|
};
|
2023-07-01 20:21:12 +02:00
|
|
|
|
2024-08-03 07:51:58 +02:00
|
|
|
${setBackgroundScript} = {
|
|
|
|
executable = true;
|
2024-08-03 20:22:47 +02:00
|
|
|
text = # fish
|
|
|
|
''
|
|
|
|
#!/usr/bin/env fish
|
|
|
|
|
|
|
|
if [ (hyprctl getoption animations:enabled -j | jq -r ".int") = "1" ]
|
|
|
|
swww img \
|
|
|
|
--transition-type $(random choice grow wave outer) \
|
|
|
|
--transition-wave 80,40 \
|
|
|
|
--transition-angle $(random choice 45 90 135 225 270 315) \
|
|
|
|
--transition-pos $(random choice center top left right bottom top-left top-right bottom-left bottom-right) \
|
|
|
|
--transition-step 200 \
|
|
|
|
--transition-duration 1.5 \
|
|
|
|
--transition-fps 240 \
|
|
|
|
--outputs "$argv[1]" \
|
|
|
|
"$argv[2]"
|
|
|
|
else
|
|
|
|
swww img \
|
|
|
|
--transition-type simple \
|
|
|
|
--transition-step 255 \
|
|
|
|
--outputs "$argv[1]" \
|
|
|
|
"$argv[2]"
|
|
|
|
end
|
|
|
|
'';
|
2024-08-03 07:51:58 +02:00
|
|
|
};
|
2023-08-01 18:01:18 +02:00
|
|
|
|
2024-08-03 07:51:58 +02:00
|
|
|
${randomBackgroundScript} = {
|
|
|
|
executable = true;
|
2024-08-03 20:22:47 +02:00
|
|
|
text = # fish
|
|
|
|
''
|
|
|
|
#!/usr/bin/env fish
|
|
|
|
|
|
|
|
for monitor in (hyprctl monitors -j | jq -r '.[].name')
|
2024-10-09 23:42:29 +02:00
|
|
|
~/.config/${setBackgroundScript} "$monitor" "$(random choice $(fd . ${osu-backgrounds}/2024-10-09-Autumn-2024-Fanart-Contest-All-Entries --follow -e jpg -e png))"
|
2024-08-03 20:22:47 +02:00
|
|
|
end
|
|
|
|
'';
|
2024-08-03 07:51:58 +02:00
|
|
|
};
|
2024-03-08 06:04:48 +01:00
|
|
|
|
2024-08-03 07:51:58 +02:00
|
|
|
${swapBackgroundScript} = {
|
|
|
|
executable = true;
|
2024-08-03 20:22:47 +02:00
|
|
|
text = # fish
|
|
|
|
''
|
|
|
|
#!/usr/bin/env fish
|
2024-03-08 06:04:48 +01:00
|
|
|
|
2024-08-03 20:22:47 +02:00
|
|
|
set M "$(swww query | cut -d ':' -f 5)"
|
|
|
|
set M1 "$(echo "$M" | head -n 1 | awk '{$1=$1};1')"
|
|
|
|
set M2 "$(echo "$M" | tail -n 1 | awk '{$1=$1};1')"
|
2024-03-08 06:04:48 +01:00
|
|
|
|
2024-08-03 20:22:47 +02:00
|
|
|
~/.config/${setBackgroundScript} "$(swww query | choose 0 | choose -c 0..-1 | tail -n 1)" "$M1"
|
|
|
|
~/.config/${setBackgroundScript} "$(swww query | choose 0 | choose -c 0..-1 | head -n 1)" "$M2"
|
|
|
|
'';
|
2024-08-03 07:51:58 +02:00
|
|
|
};
|
2024-07-08 17:24:34 +02:00
|
|
|
|
2024-08-03 07:51:58 +02:00
|
|
|
${monitorScript} = {
|
|
|
|
executable = true;
|
2024-08-03 20:22:47 +02:00
|
|
|
text = # fish
|
|
|
|
''
|
|
|
|
#!/usr/bin/env fish
|
|
|
|
|
|
|
|
if test -n "$(hyprctl monitors -j | jq -r '.[] | select(.name | contains("eDP-1"))')"
|
|
|
|
hyprctl keyword monitor eDP-1,disable
|
|
|
|
else
|
|
|
|
hyprctl keyword monitor eDP-1,preferred,auto-left,1
|
|
|
|
end
|
|
|
|
'';
|
2024-08-03 07:51:58 +02:00
|
|
|
};
|
2024-07-08 17:24:34 +02:00
|
|
|
};
|
|
|
|
|
2024-08-11 02:55:04 +02:00
|
|
|
services = {
|
2024-07-12 01:32:32 +02:00
|
|
|
hyprpaper.enable = mkForce false;
|
|
|
|
};
|
2023-06-17 02:01:27 +02:00
|
|
|
}
|