hyprland.nix... should work?
This commit is contained in:
@@ -1,296 +0,0 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
osConfig,
|
||||
...
|
||||
}:
|
||||
|
||||
let
|
||||
home = builtins.getEnv "HOME";
|
||||
in
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
hyprpicker
|
||||
# hyprlock
|
||||
# hypridle
|
||||
];
|
||||
programs.hyprland = {
|
||||
enable = true;
|
||||
xwayland.enable = true;
|
||||
systemdIntegration = true;
|
||||
settings = {
|
||||
monitor = [
|
||||
"eDP-1,1920x1080@60,0x0,1"
|
||||
"HDMI-A-1,1920x1080@60,auto,1,mirror, eDP-1 "
|
||||
",preferred,auto,1,mirror,eDP-1"
|
||||
];
|
||||
exec-once = [
|
||||
"wl-clipboard-history -t"
|
||||
"wl-paste -p --watch wl-copy -p ''"
|
||||
];
|
||||
env = [
|
||||
"HYPRCURSOR_THEME,${config.gtk.cursorTheme.name}"
|
||||
"HYPRCURSOR_SIZE,24"
|
||||
];
|
||||
input = {
|
||||
kb_layout = "us";
|
||||
kb_variant = "";
|
||||
kb_model = "";
|
||||
kb_options = "";
|
||||
kb_rules = "";
|
||||
|
||||
follow_mouse = 1;
|
||||
numlock_by_default = true;
|
||||
|
||||
touchpad = {
|
||||
disable_while_typing = true;
|
||||
natural_scroll = true;
|
||||
middle_button_emulation = true;
|
||||
drag_lock = false;
|
||||
tap-to-click = true;
|
||||
};
|
||||
sensitivity = 0;
|
||||
};
|
||||
general = {
|
||||
gaps_in = 2;
|
||||
gaps_out = 4;
|
||||
border_size = 2;
|
||||
"col.active_border" = "rgba(00ffb2ff) rgba(00ff66ff) 90deg";
|
||||
"col.inactive_border" = "rgba(595959ff)";
|
||||
layout = "dwindle";
|
||||
};
|
||||
|
||||
misc = {
|
||||
disable_hyprland_logo = false;
|
||||
disable_splash_rendering = false;
|
||||
mouse_move_enables_dpms = true;
|
||||
key_press_enables_dpms = true;
|
||||
};
|
||||
|
||||
decoration = {
|
||||
rounding = 10;
|
||||
blur = {
|
||||
enabled = true;
|
||||
size = 3;
|
||||
passes = 1;
|
||||
xray = true;
|
||||
new_optimizations = "on";
|
||||
};
|
||||
|
||||
drop_shadow = true;
|
||||
shadow_range = 4;
|
||||
shadow_render_power = 3;
|
||||
col.shadow = "rgba(1a1a1aee)";
|
||||
};
|
||||
|
||||
animations = {
|
||||
enabled = true;
|
||||
|
||||
bezier = "myBezier, 0.05, 0.9, 0.1, 1.05";
|
||||
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"
|
||||
];
|
||||
};
|
||||
|
||||
dwindle = {
|
||||
pseudotile = true;
|
||||
preserve_split = true;
|
||||
};
|
||||
|
||||
master = {
|
||||
new_is_master = true;
|
||||
};
|
||||
|
||||
gestures = {
|
||||
workspace_swipe = true;
|
||||
workspace_swipe_numbered = true;
|
||||
};
|
||||
|
||||
windowrule = [
|
||||
"idleinhibit fullscreen, firefox"
|
||||
"idleinhibit focus, firefox"
|
||||
"idleinhibit fullscreen, floorp"
|
||||
"idleinhibit fullscreen, ghostty"
|
||||
"idleinhibit focus, mpv"
|
||||
"idleinhibit focus, ^(emacs)$"
|
||||
"idleinhibit focus, ^(Emacs)$"
|
||||
"idleinhibit focus, ^(discord)$"
|
||||
"idleinhibit focus, ^(Discord)$"
|
||||
"float, polkit-kde-authentication-agent-1"
|
||||
"float, ^(praat)$"
|
||||
"float, ^(network)$"
|
||||
"float, ^(nm-)$"
|
||||
"float, ^(Network)$"
|
||||
"float, Rofi"
|
||||
"float, Gimp"
|
||||
"float, Nautilus"
|
||||
"float, notification"
|
||||
"float, ^(launcher)$"
|
||||
"tile, Spotify"
|
||||
"tile, Minecraft"
|
||||
"workspace 2, KeePassXC"
|
||||
"workspace 3, firefox"
|
||||
"workspace 3, floorp"
|
||||
"workspace 4, Spotify"
|
||||
"workspace 6, discord"
|
||||
"workspace 6, Signal"
|
||||
"workspace 10, Minecraft"
|
||||
];
|
||||
|
||||
bind = [
|
||||
"$altMod, Return, exec, ${home}/.local/bin/ghostty"
|
||||
"$mainMod, Return, exec, ${home}/.local/bin/ghostty" # for apps that yoink alt- binds
|
||||
"$altMod SHIFT, Return, exec, alacritty"
|
||||
"$mainMod SHIFT, D, exec, discord --enable-blink-features=MiddleClickAutoscroll"
|
||||
"$mainMod SHIFT, E, exec, emacsclient -c -a 'emacs'"
|
||||
"$mainMode SHIFT, F, exec, focus-linux"
|
||||
"$mainMod, SPACE, exec, pkill wofi || wofi"
|
||||
"$mainMod, E, exec, nautilus"
|
||||
"$mainMod, S, exec, spotify"
|
||||
"$mainMod, P, pseudo," # dwindle
|
||||
"$mainMod, C, killactive,"
|
||||
"$mainMod control, Q, exec, $lock"
|
||||
"$mainMod, F4, exit,"
|
||||
"$mainMod, V, togglefloating, "
|
||||
"$mainMod SHIFT, S, togglesplit," # dwindle
|
||||
"$mainMod, F, fullscreen,"
|
||||
|
||||
"$mainMod, H, movefocus, l"
|
||||
"$mainMod, L, movefocus, r"
|
||||
"$mainMod, K, movefocus, u"
|
||||
"$mainMod, J, movefocus, d"
|
||||
"$mainMod, comma, focusmonitor, -1"
|
||||
"$mainMod, period, focusmonitor, +1"
|
||||
|
||||
"$mainMod SHIFT, H, movewindow, l"
|
||||
"$mainMod SHIFT, L, movewindow, r"
|
||||
"$mainMod SHIFT, K, movewindow, u"
|
||||
"$mainMod SHIFT, J, movewindow, d"
|
||||
"$mainMod SHIFT, comma, movecurrentworkspacetomonitor, -1"
|
||||
"$mainMod SHIFT, period, movecurrentworkspacetomonitor, +1"
|
||||
|
||||
"$mainMod, right, resizeactive, 10 0"
|
||||
"$mainMod, left, resizeactive, -10 0"
|
||||
"$mainMod, up, resizeactive, 0 -10"
|
||||
"$mainMod, down, resizeactive, 0 10"
|
||||
|
||||
"$mainMod, 1, workspace, 1"
|
||||
"$mainMod, 2, workspace, 2"
|
||||
"$mainMod, 3, workspace, 3"
|
||||
"$mainMod, 4, workspace, 4"
|
||||
"$mainMod, 5, workspace, 5"
|
||||
"$mainMod, 6, workspace, 6"
|
||||
"$mainMod, 7, workspace, 7"
|
||||
"$mainMod, 8, workspace, 8"
|
||||
"$mainMod, 9, workspace, 9"
|
||||
"$mainMod, 0, workspace, 10"
|
||||
|
||||
"$mainMod SHIFT, 1, movetoworkspace, 1"
|
||||
"$mainMod SHIFT, 2, movetoworkspace, 2"
|
||||
"$mainMod SHIFT, 3, movetoworkspace, 3"
|
||||
"$mainMod SHIFT, 4, movetoworkspace, 4"
|
||||
"$mainMod SHIFT, 5, movetoworkspace, 5"
|
||||
"$mainMod SHIFT, 6, movetoworkspace, 6"
|
||||
"$mainMod SHIFT, 7, movetoworkspace, 7"
|
||||
"$mainMod SHIFT, 8, movetoworkspace, 8"
|
||||
"$mainMod SHIFT, 9, movetoworkspace, 9"
|
||||
"$mainMod SHIFT, 0, movetoworkspace, 10"
|
||||
"$mainMod SHIFT CTRL, right, movetoworkspace, +1"
|
||||
"$mainMod SHIFT CTRL, left, movetoworkspace, -1"
|
||||
|
||||
# Scroll through existing workspaces with mainMod + scroll
|
||||
"$mainMod, mouse_down, workspace, e+1"
|
||||
"$mainMod, mouse_up, workspace, e-1"
|
||||
|
||||
# Tab through existing workspaces
|
||||
"$mainMod, Tab, workspace, e+1"
|
||||
"$mainMod SHIFT, Tab, workspace, e-1"
|
||||
|
||||
"$mainMod CTRL, right, workspace, +1"
|
||||
"$mainMod CTRL, left, workspace, -1"
|
||||
];
|
||||
|
||||
bindl = [
|
||||
", XF86AudioPlay, exec, playerctl play-pause"
|
||||
", XF86AudioNext, exec, playerctl next"
|
||||
", XF86AudioPrev, exec, playerctl previous"
|
||||
];
|
||||
|
||||
bindel = [
|
||||
", XF86AudioRaiseVolume, exec, pamixer -i 5"
|
||||
", XF86AudioLowerVolume, exec, pamixer -d 5"
|
||||
", XF86AudioMute, exec, pamixer -t"
|
||||
];
|
||||
|
||||
binde = [
|
||||
", XF86MonBrightnessDown, exec, brightnessctl set 10%-"
|
||||
", XF86MonBrightnessUp, exec, brightnessctl set 10%+"
|
||||
];
|
||||
|
||||
# Move/resize windows with mainMod + LMB/RMB and dragging
|
||||
bindm = [
|
||||
"$mainMod, mouse:272, movewindow"
|
||||
"$mainMod, mouse:273, resizewindow"
|
||||
];
|
||||
|
||||
# Screenshots and Submaps
|
||||
extraConfig = ''
|
||||
$screenshotarea = hyprctl keyword animation "fadeOut,0,0,default"; grimblast --notify copy area; hyprctl keyword animation "fadeOut,1,4,default"
|
||||
bind = , Print, exec, $screenshotarea
|
||||
bind = SHIFT, Print, exec, grimblast --notify --cursor copy output
|
||||
|
||||
bind = $mainMod, R, submap, resize
|
||||
submap = resize
|
||||
bind=, escape,submap,reset
|
||||
|
||||
binde=, left, resizeactive, -10 0
|
||||
bindr=, left, submap, reset
|
||||
binde=, right, resizeactive, 10 0
|
||||
bindr=, right, submap, reset
|
||||
binde=, up, resizeactive, 0 10
|
||||
bindr=, up, submap, reset
|
||||
binde=, down, resizeactive, 0 -10
|
||||
bindr=, down, submap, reset
|
||||
|
||||
binde=, H, resizeactive, -10 0
|
||||
bindr=, H, submap, reset
|
||||
binde=, J, resizeactive, 0 -10
|
||||
bindr=, J, submap, reset
|
||||
binde=, K, resizeactive, 0 10
|
||||
bindr=, K, submap, reset
|
||||
binde=, L, resizeactive, 10 0
|
||||
bindr=, L, submap, reset
|
||||
|
||||
submap=reset
|
||||
|
||||
bind = $mainMod, B, submap, browser_select
|
||||
submap = browser_select
|
||||
|
||||
bind =, B, exec, brave --enable-blink-features=MiddleClickAutoscroll
|
||||
bind =, B, submap, reset
|
||||
|
||||
bind =, F, exec, firefox
|
||||
bind =, F, submap, reset
|
||||
|
||||
bind=, escape,submap,reset
|
||||
submap=reset
|
||||
|
||||
bind = $mainMod SHIFT, V, submap, video_stuff
|
||||
submap = video_stuff
|
||||
bind = , O, exec, obs
|
||||
bind = , O, submap, reset
|
||||
bind = , V, exec , kdenlive
|
||||
bind = , V, submap, reset
|
||||
|
||||
bind=, escape,submap,reset
|
||||
submap = reset
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user