disko
This commit is contained in:
@@ -2,86 +2,113 @@
|
||||
|
||||
let
|
||||
mod = "SUPER";
|
||||
terminal = "foot";
|
||||
menu = "rofi -show drun";
|
||||
browser = "brave";
|
||||
in
|
||||
{
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
configType = "lua";
|
||||
package = null;
|
||||
|
||||
settings = {
|
||||
# -----------------------------------------------------------------------
|
||||
# 1. Variables & Modifiers
|
||||
# -----------------------------------------------------------------------
|
||||
"$mod" = mod;
|
||||
"$terminal" = "foot";
|
||||
"$menu" = "rofi -show drun";
|
||||
"$browser" = "brave";
|
||||
"$terminal" = terminal;
|
||||
"$menu" = menu;
|
||||
"$browser" = browser;
|
||||
|
||||
# -----------------------------------------------------------------------
|
||||
# 2. General, Layout & Decoration
|
||||
# 2. Main Config (hl.config)
|
||||
# -----------------------------------------------------------------------
|
||||
general = {
|
||||
gaps_in = 4;
|
||||
gaps_out = 8;
|
||||
border_size = 2;
|
||||
"col.active_border" = "rgba(33ccffee) rgba(00ff99ee) 45deg";
|
||||
"col.inactive_border" = "rgba(595959aa)";
|
||||
layout = "dwindle";
|
||||
allow_tearing = false;
|
||||
};
|
||||
config = {
|
||||
general = {
|
||||
gaps_in = 4;
|
||||
gaps_out = 8;
|
||||
border_size = 2;
|
||||
col = {
|
||||
active_border = {
|
||||
colors = [ "rgba(33ccffee)" "rgba(00ff99ee)" ];
|
||||
angle = 45;
|
||||
};
|
||||
inactive_border = "rgba(595959aa)";
|
||||
};
|
||||
layout = "dwindle";
|
||||
allow_tearing = false;
|
||||
};
|
||||
|
||||
decoration = {
|
||||
rounding = 8;
|
||||
active_opacity = 1.0;
|
||||
inactive_opacity = 0.95;
|
||||
decoration = {
|
||||
rounding = 8;
|
||||
active_opacity = 1.0;
|
||||
inactive_opacity = 0.95;
|
||||
|
||||
blur = {
|
||||
blur = {
|
||||
enabled = true;
|
||||
size = 5;
|
||||
passes = 2;
|
||||
new_optimizations = true;
|
||||
};
|
||||
|
||||
shadow = {
|
||||
enabled = true;
|
||||
range = 4;
|
||||
render_power = 3;
|
||||
color = "rgba(1a1a1aee)";
|
||||
};
|
||||
};
|
||||
|
||||
animations = {
|
||||
enabled = true;
|
||||
size = 5;
|
||||
passes = 2;
|
||||
new_optimizations = true;
|
||||
};
|
||||
|
||||
shadow = {
|
||||
enabled = true;
|
||||
range = 4;
|
||||
render_power = 3;
|
||||
color = "rgba(1a1a1aee)";
|
||||
input = {
|
||||
kb_layout = "us";
|
||||
follow_mouse = 1;
|
||||
touchpad = {
|
||||
natural_scroll = true;
|
||||
};
|
||||
sensitivity = 0;
|
||||
};
|
||||
};
|
||||
|
||||
animations = {
|
||||
enabled = true;
|
||||
bezier = [
|
||||
"easeOutQuint, 0.23, 1, 0.32, 1"
|
||||
];
|
||||
animation = [
|
||||
"windows, 1, 3, easeOutQuint"
|
||||
"windowsOut, 1, 3, easeOutQuint, popin 80%"
|
||||
"border, 1, 3, easeOutQuint"
|
||||
"fade, 1, 3, easeOutQuint"
|
||||
"workspaces, 1, 3, easeOutQuint"
|
||||
];
|
||||
};
|
||||
|
||||
input = {
|
||||
kb_layout = "us";
|
||||
follow_mouse = 1;
|
||||
touchpad = {
|
||||
natural_scroll = true;
|
||||
dwindle = {
|
||||
pseudotile = true;
|
||||
preserve_split = true;
|
||||
};
|
||||
sensitivity = 0;
|
||||
};
|
||||
|
||||
dwindle = {
|
||||
pseudotile = true;
|
||||
preserve_split = true;
|
||||
};
|
||||
|
||||
misc = {
|
||||
force_default_wallpaper = 0;
|
||||
disable_hyprland_logo = true;
|
||||
misc = {
|
||||
force_default_wallpaper = 0;
|
||||
disable_hyprland_logo = true;
|
||||
};
|
||||
};
|
||||
|
||||
# -----------------------------------------------------------------------
|
||||
# 3. Autostart Daemons & Apps
|
||||
# 3. Animation Curves (hl.curve) & Animations
|
||||
# -----------------------------------------------------------------------
|
||||
curve = [
|
||||
{
|
||||
_args = [
|
||||
"easeOutQuint"
|
||||
{
|
||||
type = "bezier";
|
||||
points = [ [ 0.23 1 ] [ 0.32 1 ] ];
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
|
||||
animation = [
|
||||
"windows, 1, 3, easeOutQuint"
|
||||
"windowsOut, 1, 3, easeOutQuint, popin 80%"
|
||||
"border, 1, 3, easeOutQuint"
|
||||
"fade, 1, 3, easeOutQuint"
|
||||
"workspaces, 1, 3, easeOutQuint"
|
||||
];
|
||||
|
||||
# -----------------------------------------------------------------------
|
||||
# 4. Autostart Daemons & Apps
|
||||
# -----------------------------------------------------------------------
|
||||
exec-once = [
|
||||
"waybar"
|
||||
@@ -92,7 +119,7 @@ in
|
||||
];
|
||||
|
||||
# -----------------------------------------------------------------------
|
||||
# 4. Keybindings
|
||||
# 5. Keybindings
|
||||
# -----------------------------------------------------------------------
|
||||
bind = [
|
||||
# Launchers & Applications
|
||||
|
||||
Reference in New Issue
Block a user