hyprland lua
This commit is contained in:
@@ -5,8 +5,46 @@
|
||||
...
|
||||
}:
|
||||
let
|
||||
inherit (lib) mkOption recursiveUpdate types optionals;
|
||||
inherit (lib)
|
||||
mkOption
|
||||
recursiveUpdate
|
||||
types
|
||||
optionals
|
||||
;
|
||||
rosePineHyprcursor = pkgs.callPackage ./rose-pine-hyprcursor.nix { };
|
||||
mkLua = lib.generators.mkLuaInline;
|
||||
|
||||
mkEnv = name: value: {
|
||||
_args = [
|
||||
name
|
||||
value
|
||||
];
|
||||
};
|
||||
|
||||
mkBind = keys: dispatcher: {
|
||||
_args = [
|
||||
keys
|
||||
(mkLua dispatcher)
|
||||
];
|
||||
};
|
||||
|
||||
mkMouseBind = keys: dispatcher: {
|
||||
_args = [
|
||||
keys
|
||||
(mkLua dispatcher)
|
||||
{ mouse = true; }
|
||||
];
|
||||
};
|
||||
|
||||
mkStartHook = commands: {
|
||||
_args = [
|
||||
"hyprland.start"
|
||||
(mkLua ''
|
||||
function()
|
||||
${lib.concatMapStrings (command: " hl.exec_cmd(${builtins.toJSON command})\n") commands}end
|
||||
'')
|
||||
];
|
||||
};
|
||||
|
||||
defaultInput = {
|
||||
kb_layout = "us";
|
||||
@@ -27,35 +65,31 @@ let
|
||||
|
||||
wallpaperCommand = config.hare.hyprland.wallpaperCommand;
|
||||
|
||||
baseSettings = {
|
||||
exec-once = [
|
||||
# "/usr/lib/polkit-kde-authentication-agent-1"
|
||||
# "dunst"
|
||||
"awww-daemon"
|
||||
# "copyq --start-server"
|
||||
# "wl-paste --type text --watch cliphist store"
|
||||
# "wl-paste --type image --watch cliphist store"
|
||||
"eww daemon"
|
||||
"eww open bar"
|
||||
"eww open roundedEdge"
|
||||
];
|
||||
exec =
|
||||
optionals (wallpaperCommand != null) [
|
||||
wallpaperCommand
|
||||
]
|
||||
++ [
|
||||
startupCommands = [
|
||||
# "/usr/lib/polkit-kde-authentication-agent-1"
|
||||
# "dunst"
|
||||
"awww-daemon"
|
||||
# "copyq --start-server"
|
||||
# "wl-paste --type text --watch cliphist store"
|
||||
# "wl-paste --type image --watch cliphist store"
|
||||
"eww daemon"
|
||||
"eww open bar"
|
||||
"eww open roundedEdge"
|
||||
];
|
||||
|
||||
reloadCommands =
|
||||
optionals (wallpaperCommand != null) [
|
||||
wallpaperCommand
|
||||
]
|
||||
++ [
|
||||
"dconf write /org/gnome/desktop/interface/gtk-theme 'Adwaita Dark'"
|
||||
"dconf write /org/gnome/desktop/interface/icon-theme 'Adwaita Dark'"
|
||||
"dconf write /org/gnome/desktop/interface/document-font-name 'Noto Sans Medium 11'"
|
||||
"dconf write /org/gnome/desktop/interface/font-name 'Noto Sans Medium 11'"
|
||||
"dconf write /org/gnome/desktop/interface/monospace-font-name 'Noto Sans Mono Medium 11'"
|
||||
];
|
||||
env = [
|
||||
"XDG_CURRENT_DESKTOP,Hyprland"
|
||||
"XDG_SESSION_TYPE,wayland"
|
||||
"XDG_SESSION_DESKTOP,Hyprland"
|
||||
];
|
||||
|
||||
baseConfig = {
|
||||
ecosystem.no_update_news = true;
|
||||
|
||||
input = defaultInput;
|
||||
@@ -66,7 +100,6 @@ let
|
||||
};
|
||||
|
||||
dwindle = {
|
||||
pseudotile = true;
|
||||
preserve_split = true;
|
||||
};
|
||||
|
||||
@@ -75,76 +108,124 @@ let
|
||||
disable_hyprland_logo = true;
|
||||
disable_splash_rendering = true;
|
||||
};
|
||||
xwayland = {
|
||||
force_zero_scaling = true;
|
||||
};
|
||||
};
|
||||
|
||||
windowrule = [
|
||||
"animation windowsIn 0, match:title ^(.*wofi.*)$"
|
||||
"float on, match:title ^(.*feh.*)$"
|
||||
"center on, match:title ^(.*feh.*)$"
|
||||
"float on, match:title ^(Picture.*)$"
|
||||
"pin on, match:title ^(Picture.*)$"
|
||||
"immediate on, match:class ^(Terraria)$"
|
||||
baseSettings = {
|
||||
menu = {
|
||||
_var = "uwsm app -- $(tofi-drun)";
|
||||
};
|
||||
terminal = {
|
||||
_var = "wezterm";
|
||||
};
|
||||
lock = {
|
||||
_var = "hyprlock";
|
||||
};
|
||||
|
||||
env = [
|
||||
(mkEnv "XDG_CURRENT_DESKTOP" "Hyprland")
|
||||
(mkEnv "XDG_SESSION_TYPE" "wayland")
|
||||
(mkEnv "XDG_SESSION_DESKTOP" "Hyprland")
|
||||
# "GDK_SCALE,2"
|
||||
# "XCURSOR_SIZE,32"
|
||||
];
|
||||
|
||||
workspace = [
|
||||
"1, monitor:DP-2, default:true"
|
||||
"r[2-9], monitor:DP-2"
|
||||
"name:sub, monitor:DP-1, default:true"
|
||||
exec_cmd = reloadCommands;
|
||||
|
||||
on = mkStartHook startupCommands;
|
||||
|
||||
window_rule = [
|
||||
{
|
||||
match.title = "^(.*wofi.*)$";
|
||||
animation = "windowsIn 0";
|
||||
}
|
||||
{
|
||||
match.title = "^(.*feh.*)$";
|
||||
float = true;
|
||||
}
|
||||
{
|
||||
match.title = "^(.*feh.*)$";
|
||||
center = true;
|
||||
}
|
||||
{
|
||||
match.title = "^(Picture.*)$";
|
||||
float = true;
|
||||
}
|
||||
{
|
||||
match.title = "^(Picture.*)$";
|
||||
pin = true;
|
||||
}
|
||||
];
|
||||
|
||||
"$menu" = "uwsm app -- $(tofi-drun)";
|
||||
"$terminal" = "wezterm";
|
||||
"$lock" = "hyprlock";
|
||||
bindm = [
|
||||
# Window Movement & Resizing
|
||||
"SUPER, mouse:272, movewindow"
|
||||
"SUPER, mouse:273, resizewindow"
|
||||
workspace_rule = [
|
||||
{
|
||||
workspace = "r[1-9]";
|
||||
monitor = "DP-1";
|
||||
}
|
||||
{
|
||||
workspace = "101";
|
||||
monitor = "DP-2";
|
||||
default = true;
|
||||
}
|
||||
{
|
||||
workspace = "102";
|
||||
monitor = "DP-3";
|
||||
default = true;
|
||||
}
|
||||
];
|
||||
|
||||
bind = [
|
||||
# Window Movement & Resizing
|
||||
(mkMouseBind "SUPER + mouse:272" "hl.dsp.window.drag()")
|
||||
(mkMouseBind "SUPER + mouse:273" "hl.dsp.window.resize()")
|
||||
|
||||
# basic
|
||||
"SUPER, return, exec, $menu"
|
||||
"SUPER, E, exec, $terminal"
|
||||
"SUPER, Q, killactive,"
|
||||
"SUPER, L, exec, $lock"
|
||||
"SUPER_SHIFT, L, exec, hyprctl dispatch dpms off"
|
||||
"SUPER_SHIFT, M, exec, loginctl terminate-user $USER"
|
||||
(mkBind "SUPER + RETURN" "hl.dsp.exec_cmd(menu)")
|
||||
(mkBind "SUPER + E" "hl.dsp.exec_cmd(terminal)")
|
||||
(mkBind "SUPER + Q" "hl.dsp.window.close()")
|
||||
(mkBind "SUPER + L" "hl.dsp.exec_cmd(lock)")
|
||||
(mkBind "SUPER + SHIFT + L" ''hl.dsp.dpms({ action = "off" })'')
|
||||
(mkBind "SUPER + SHIFT + M" ''hl.dsp.exec_cmd("loginctl terminate-user $USER")'')
|
||||
|
||||
# prsc
|
||||
", Print, exec, hyprshot -m window -m active --clipboard-only"
|
||||
(mkBind "Print" ''hl.dsp.exec_cmd("hyprshot -m window -m active --clipboard-only")'')
|
||||
|
||||
# Clipboard
|
||||
"SUPER, C, exec, copyq show"
|
||||
"SUPER, V, exec, clipman pick -t dmenu"
|
||||
(mkBind "SUPER + C" ''hl.dsp.exec_cmd("copyq show")'')
|
||||
(mkBind "SUPER + V" ''hl.dsp.exec_cmd("clipman pick -t dmenu")'')
|
||||
|
||||
# Window navigation
|
||||
"SUPER, F, fullscreen,"
|
||||
"SUPER, Y, pin"
|
||||
"SUPER, I, togglefloating,"
|
||||
"SUPER, O, togglesplit," # dwindle
|
||||
"SUPER, P, pseudo," # dwindle
|
||||
(mkBind "SUPER + F" "hl.dsp.window.fullscreen()")
|
||||
(mkBind "SUPER + Y" "hl.dsp.window.pin()")
|
||||
(mkBind "SUPER + I" ''hl.dsp.window.float({ action = "toggle" })'')
|
||||
(mkBind "SUPER + O" ''hl.dsp.layout("togglesplit")'') # dwindle
|
||||
(mkBind "SUPER + P" "hl.dsp.window.pseudo()") # dwindle
|
||||
|
||||
# Window focus
|
||||
"SUPER, mouse_down, cyclenext, next"
|
||||
"SUPER, mouse_up, cyclenext, prev"
|
||||
(mkBind "SUPER + mouse_down" "hl.dsp.window.cycle_next()")
|
||||
(mkBind "SUPER + mouse_up" "hl.dsp.window.cycle_next({ next = false })")
|
||||
|
||||
"SUPER, left, movefocus, l"
|
||||
"SUPER, right, movefocus, r"
|
||||
"SUPER, up, movefocus, u"
|
||||
"SUPER, down, movefocus, d"
|
||||
(mkBind "SUPER + left" ''hl.dsp.focus({ direction = "left" })'')
|
||||
(mkBind "SUPER + right" ''hl.dsp.focus({ direction = "right" })'')
|
||||
(mkBind "SUPER + up" ''hl.dsp.focus({ direction = "up" })'')
|
||||
(mkBind "SUPER + down" ''hl.dsp.focus({ direction = "down" })'')
|
||||
|
||||
"SUPER_SHIFT, left, movewindow, l"
|
||||
"SUPER_SHIFT, right, movewindow, r"
|
||||
"SUPER_SHIFT, up, movewindow, u"
|
||||
"SUPER_SHIFT, down, movewindow, d"
|
||||
(mkBind "SUPER + SHIFT + left" ''hl.dsp.window.move({ direction = "left" })'')
|
||||
(mkBind "SUPER + SHIFT + right" ''hl.dsp.window.move({ direction = "right" })'')
|
||||
(mkBind "SUPER + SHIFT + up" ''hl.dsp.window.move({ direction = "up" })'')
|
||||
(mkBind "SUPER + SHIFT + down" ''hl.dsp.window.move({ direction = "down" })'')
|
||||
|
||||
# workspaces
|
||||
"SUPER, 1, workspace, 1"
|
||||
"SUPER, 2, workspace, 2"
|
||||
"SUPER, 3, workspace, 3"
|
||||
(mkBind "SUPER + 1" "hl.dsp.focus({ workspace = 1 })")
|
||||
(mkBind "SUPER + 2" "hl.dsp.focus({ workspace = 2 })")
|
||||
(mkBind "SUPER + 3" "hl.dsp.focus({ workspace = 3 })")
|
||||
|
||||
"SUPER_CTRL, left, workspace, m-1"
|
||||
"SUPER_CTRL, right, workspace, m+1"
|
||||
"SUPER_CTRL_SHIFT, left, workspace, r-1"
|
||||
"SUPER_CTRL_SHIFT, right, workspace, r+1"
|
||||
(mkBind "SUPER + CTRL + left" ''hl.dsp.focus({ workspace = "m-1" })'')
|
||||
(mkBind "SUPER + CTRL + right" ''hl.dsp.focus({ workspace = "m+1" })'')
|
||||
(mkBind "SUPER + CTRL + SHIFT + left" ''hl.dsp.focus({ workspace = "r-1" })'')
|
||||
(mkBind "SUPER + CTRL + SHIFT + right" ''hl.dsp.focus({ workspace = "r+1" })'')
|
||||
]
|
||||
++ (
|
||||
# workspaces
|
||||
@@ -156,8 +237,8 @@ let
|
||||
ws = i + 1;
|
||||
in
|
||||
[
|
||||
"SUPER, code:1${toString i}, workspace, ${toString ws}"
|
||||
"SUPER SHIFT, code:1${toString i}, movetoworkspace, ${toString ws}"
|
||||
(mkBind "SUPER + code:1${toString i}" "hl.dsp.focus({ workspace = ${toString ws} })")
|
||||
(mkBind "SUPER + SHIFT + code:1${toString i}" "hl.dsp.window.move({ workspace = ${toString ws} })")
|
||||
]
|
||||
) 9
|
||||
)
|
||||
@@ -169,8 +250,16 @@ let
|
||||
gaps_in = 4;
|
||||
gaps_out = 7;
|
||||
border_size = 3;
|
||||
"col.active_border" = "rgba(6e848cee) rgba(eeeeffee) 90deg";
|
||||
"col.inactive_border" = "rgba(595959aa)";
|
||||
col = {
|
||||
active_border = {
|
||||
colors = [
|
||||
"rgba(6e848cee)"
|
||||
"rgba(eeeeffee)"
|
||||
];
|
||||
angle = 90;
|
||||
};
|
||||
inactive_border = "rgba(595959aa)";
|
||||
};
|
||||
};
|
||||
decoration = {
|
||||
rounding = 10;
|
||||
@@ -195,18 +284,59 @@ let
|
||||
animations = {
|
||||
enabled = true;
|
||||
animation = [
|
||||
"windowsIn, 1, 1, default, popin 90%"
|
||||
"windowsOut, 1, 100, default, popin 80%"
|
||||
"windowsMove, 1, 3, default"
|
||||
"border, 1, 10, default"
|
||||
"borderangle, 1, 8, default"
|
||||
"fade, 1, 7, default"
|
||||
"workspaces, 1, 5, default, slidefade 10%"
|
||||
{
|
||||
leaf = "windowsIn";
|
||||
enabled = true;
|
||||
speed = 1;
|
||||
bezier = "default";
|
||||
style = "popin 90%";
|
||||
}
|
||||
{
|
||||
leaf = "windowsOut";
|
||||
enabled = true;
|
||||
speed = 100;
|
||||
bezier = "default";
|
||||
style = "popin 80%";
|
||||
}
|
||||
{
|
||||
leaf = "windowsMove";
|
||||
enabled = true;
|
||||
speed = 3;
|
||||
bezier = "default";
|
||||
}
|
||||
{
|
||||
leaf = "border";
|
||||
enabled = true;
|
||||
speed = 10;
|
||||
bezier = "default";
|
||||
}
|
||||
{
|
||||
leaf = "borderangle";
|
||||
enabled = true;
|
||||
speed = 8;
|
||||
bezier = "default";
|
||||
}
|
||||
{
|
||||
leaf = "fade";
|
||||
enabled = true;
|
||||
speed = 7;
|
||||
bezier = "default";
|
||||
}
|
||||
{
|
||||
leaf = "workspaces";
|
||||
enabled = true;
|
||||
speed = 5;
|
||||
bezier = "default";
|
||||
style = "slidefade 10%";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
styleSettings = recursiveUpdate defaultStyle config.hare.hyprland.style;
|
||||
styleConfig = recursiveUpdate (builtins.removeAttrs styleSettings [ "animations" ]) {
|
||||
animations = builtins.removeAttrs styleSettings.animations [ "animation" ];
|
||||
};
|
||||
inputSettings = recursiveUpdate defaultInput config.hare.hyprland.input;
|
||||
in
|
||||
{
|
||||
@@ -230,9 +360,13 @@ in
|
||||
config = {
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
configType = "lua";
|
||||
systemd.enable = false;
|
||||
settings = recursiveUpdate (recursiveUpdate baseSettings styleSettings) {
|
||||
input = inputSettings;
|
||||
settings = recursiveUpdate baseSettings {
|
||||
config = recursiveUpdate (recursiveUpdate baseConfig styleConfig) {
|
||||
input = inputSettings;
|
||||
};
|
||||
animation = styleSettings.animations.animation;
|
||||
};
|
||||
plugins = [
|
||||
];
|
||||
|
||||
@@ -4,8 +4,16 @@
|
||||
gaps_in = 0;
|
||||
gaps_out = 0;
|
||||
border_size = 2;
|
||||
"col.active_border" = "rgba(6e848cee) rgba(eeeeffee) 90deg";
|
||||
"col.inactive_border" = "rgba(595959aa)";
|
||||
col = {
|
||||
active_border = {
|
||||
colors = [
|
||||
"rgba(6e848cee)"
|
||||
"rgba(eeeeffee)"
|
||||
];
|
||||
angle = 90;
|
||||
};
|
||||
inactive_border = "rgba(595959aa)";
|
||||
};
|
||||
layout = "dwindle";
|
||||
allow_tearing = true;
|
||||
};
|
||||
@@ -31,13 +39,51 @@
|
||||
animations = lib.mkForce {
|
||||
enabled = true;
|
||||
animation = [
|
||||
"windowsIn, 1, 1, default, popin 90%"
|
||||
"windowsOut, 1, 100, default, popin 80%"
|
||||
"windowsMove, 1, 3, default"
|
||||
"border, 1, 10, default"
|
||||
"borderangle, 1, 8, default"
|
||||
"fade, 1, 7, default"
|
||||
"workspaces, 1, 5, default, slidefade 10%"
|
||||
{
|
||||
leaf = "windowsIn";
|
||||
enabled = true;
|
||||
speed = 1;
|
||||
bezier = "default";
|
||||
style = "popin 90%";
|
||||
}
|
||||
{
|
||||
leaf = "windowsOut";
|
||||
enabled = true;
|
||||
speed = 100;
|
||||
bezier = "default";
|
||||
style = "popin 80%";
|
||||
}
|
||||
{
|
||||
leaf = "windowsMove";
|
||||
enabled = true;
|
||||
speed = 3;
|
||||
bezier = "default";
|
||||
}
|
||||
{
|
||||
leaf = "border";
|
||||
enabled = true;
|
||||
speed = 10;
|
||||
bezier = "default";
|
||||
}
|
||||
{
|
||||
leaf = "borderangle";
|
||||
enabled = true;
|
||||
speed = 8;
|
||||
bezier = "default";
|
||||
}
|
||||
{
|
||||
leaf = "fade";
|
||||
enabled = true;
|
||||
speed = 7;
|
||||
bezier = "default";
|
||||
}
|
||||
{
|
||||
leaf = "workspaces";
|
||||
enabled = true;
|
||||
speed = 5;
|
||||
bezier = "default";
|
||||
style = "slidefade 10%";
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user