dotfiles-mirror/config/hypr/hyprland.conf

203 lines
5.6 KiB
Text
Raw Normal View History

2026-02-17 22:49:02 +03:30
monitor=HDMI-A-1,1920x1080@75,auto,auto
2025-09-25 04:08:48 +03:30
2026-02-21 01:27:19 +03:30
hide_on_fullscreen = true
2026-02-17 22:49:02 +03:30
$terminal = foot
$menu = rofi -show drun -config /home/coast/.config/rofi/config.rasi
2026-02-21 01:27:19 +03:30
$webBrowser = firefox-bin
$discordApp = vesktop-bin --proxy-server="socks5://127.0.0.1:65000"
$restartWaybar = pkill waybar; waybar&disown
2025-09-25 04:08:48 +03:30
2026-02-17 22:49:02 +03:30
exec-once = hyprctl setcursor Adwaita 24 &
exec-once = wbg /home/coast/Pictures/walls/wallhaven-d83vjl_1920x1080.png &
2026-02-21 01:27:19 +03:30
exec-once = hypridle &
exec-once = hyprpm reload -n;
exec-once = dbus-update-activation-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=Hyprland
exec-once = gnome-keyring-daemon --start --components=secrets
exec-once = waybar &
exec-once = mpd ~/.mpdconf &
exec-once = mpc add /;
2025-09-25 04:08:48 +03:30
2025-06-29 21:22:43 +03:30
env = XCURSOR_SIZE,24
env = HYPRCURSOR_SIZE,24
2025-09-25 04:08:48 +03:30
2025-06-29 21:22:43 +03:30
general {
2025-09-26 23:59:51 +03:30
gaps_in = 5
2026-02-21 01:27:19 +03:30
gaps_out = 15
2025-09-25 21:27:56 +03:30
border_size = 2
2026-02-17 22:49:02 +03:30
col.active_border = rgba(6c6c9dee) rgba(1e1e2eee) 45deg
col.inactive_border = rgba(1e1e2eaa)
2025-06-29 21:22:43 +03:30
resize_on_border = false
2026-02-17 22:49:02 +03:30
allow_tearing = false
2025-09-25 04:08:48 +03:30
layout = master
2025-06-29 21:22:43 +03:30
}
2025-09-25 04:08:48 +03:30
2025-06-29 21:22:43 +03:30
decoration {
2026-02-21 01:27:19 +03:30
rounding = 10
2025-06-29 21:22:43 +03:30
active_opacity = 1.0
inactive_opacity = 1.0
shadow {
enabled = true
range = 4
render_power = 3
color = rgba(1a1a1aee)
}
blur {
enabled = true
size = 3
passes = 1
vibrancy = 0.1696
2026-02-17 22:49:02 +03:30
new_optimizations = true
2025-06-29 21:22:43 +03:30
}
}
2025-09-25 04:08:48 +03:30
2025-06-29 21:22:43 +03:30
animations {
2026-02-17 22:49:02 +03:30
enabled = yes
bezier = shot, 0.2, 1, 0.3, 1
bezier = swipe, 0.6, 0, 0.4, 1
bezier = bounce, 0.1, 1.1, 0.3, 1
animation = windows, 1, 3, bounce, popin 80%
animation = windowsIn, 1, 3, bounce, popin 80%
animation = windowsOut, 1, 2, shot, popin 80%
animation = border, 1, 2, default
animation = fade, 1, 2, default
animation = layers, 1, 4, swipe, slide top
animation = layersIn, 1, 4, swipe, slide top
animation = layersOut, 1, 2, swipe, slide top
animation = workspaces, 1, 3, swipe, slide
2025-06-29 21:22:43 +03:30
}
2025-09-25 04:08:48 +03:30
2025-06-29 21:22:43 +03:30
master {
2025-09-25 04:38:18 +03:30
new_status = slave
2025-06-29 21:22:43 +03:30
}
2025-09-25 04:08:48 +03:30
2025-06-29 21:22:43 +03:30
misc {
2026-02-17 22:49:02 +03:30
force_default_wallpaper = 0
disable_hyprland_logo = true
2025-06-29 21:22:43 +03:30
}
2025-09-25 04:08:48 +03:30
2025-06-29 21:22:43 +03:30
input {
kb_layout = us
follow_mouse = 1
2026-02-17 22:49:02 +03:30
sensitivity = 0
2025-06-29 21:22:43 +03:30
}
2025-09-25 04:08:48 +03:30
2026-02-17 22:49:02 +03:30
$mainMod = SUPER
2025-09-25 04:08:48 +03:30
2026-02-17 22:49:02 +03:30
bind = $mainMod, Return, exec, $terminal
bind = $mainMod, S, killactive,
bind = $mainMod, M, exec, killall eww; eww daemon && eww open bar
2026-02-21 01:27:19 +03:30
bind = $mainMod SHIFT, Q, exit
2026-02-17 22:49:02 +03:30
bind = $mainMod, Space, togglefloating
bind = $mainMod, Space, resizeactive, exact 1000 800
bind = $mainMod, Space, centerwindow
bind = $mainMod, R, exec, $menu
2025-09-25 04:08:48 +03:30
2026-02-17 22:49:02 +03:30
bind = $mainMod, H, movefocus, l
bind = $mainMod, L, movefocus, r
bind = $mainMod, K, movefocus, u
bind = $mainMod, J, movefocus, d
2025-09-25 04:08:48 +03:30
2026-02-17 22:49:02 +03:30
bind = $mainMod SHIFT, H, movewindow, l
bind = $mainMod SHIFT, L, movewindow, r
bind = $mainMod SHIFT, K, movewindow, u
bind = $mainMod SHIFT, J, movewindow, d
2025-09-25 04:08:48 +03:30
2026-02-17 22:49:02 +03:30
binde = $mainMod ALT, H, resizeactive, -30 0
binde = $mainMod ALT, L, resizeactive, 30 0
binde = $mainMod ALT, K, resizeactive, 0 -30
binde = $mainMod ALT, J, resizeactive, 0 30
2025-09-25 04:08:48 +03:30
2026-02-17 22:49:02 +03:30
binde = $mainMod, left, moveactive, -40 0
binde = $mainMod, right, moveactive, 40 0
binde = $mainMod, up, moveactive, 0 -40
binde = $mainMod, down, moveactive, 0 40
binde = $mainMod SHIFT, left, resizeactive, -40 0
binde = $mainMod SHIFT, right, resizeactive, 40 0
binde = $mainMod SHIFT, up, resizeactive, 0 -40
binde = $mainMod SHIFT, down, resizeactive, 0 40
2025-09-25 04:08:48 +03:30
2026-02-17 22:49:02 +03:30
bind = $mainMod, Backslash, centerwindow,
2025-09-25 04:08:48 +03:30
2025-06-29 21:22:43 +03:30
bind = $mainMod, 1, workspace, 1
bind = $mainMod, 2, workspace, 2
bind = $mainMod, 3, workspace, 3
bind = $mainMod, 4, workspace, 4
bind = $mainMod, 5, workspace, 5
bind = $mainMod, 6, workspace, 6
bind = $mainMod, 7, workspace, 7
bind = $mainMod, 8, workspace, 8
bind = $mainMod, 9, workspace, 9
2025-09-25 04:08:48 +03:30
2025-06-29 21:22:43 +03:30
bind = $mainMod SHIFT, 1, movetoworkspace, 1
bind = $mainMod SHIFT, 2, movetoworkspace, 2
bind = $mainMod SHIFT, 3, movetoworkspace, 3
bind = $mainMod SHIFT, 4, movetoworkspace, 4
bind = $mainMod SHIFT, 5, movetoworkspace, 5
bind = $mainMod SHIFT, 6, movetoworkspace, 6
bind = $mainMod SHIFT, 7, movetoworkspace, 7
bind = $mainMod SHIFT, 8, movetoworkspace, 8
bind = $mainMod SHIFT, 9, movetoworkspace, 9
2025-09-25 04:08:48 +03:30
2026-02-17 22:49:02 +03:30
bind = $mainMod, C, togglespecialworkspace, magic
bind = $mainMod SHIFT, S, exec, grim -g "$(slurp)" - | wl-copy
2025-09-25 04:08:48 +03:30
2026-02-21 01:27:19 +03:30
bind = $mainMod CONTROL, L, exec, hyprlock
bind = $mainMod SHIFT, B, exec, $webBrowser
bind = $mainMod SHIFT, V, exec, $discordApp
2025-06-29 21:22:43 +03:30
bindm = $mainMod, mouse:272, movewindow
bindm = $mainMod, mouse:273, resizewindow
2025-09-25 04:08:48 +03:30
2026-02-21 01:27:19 +03:30
bind = $mainMod SHIFT, P, exec, $restartWaybar
plugin {
hyprbars {
enabled = true
bar_height = 25
bar_color = rgba(1e1e2eaa)
bar_blur = true
bar_title_enabled = true
bar_text_font = "JetBrainsMono Nerd Font"
bar_text_size = 12
bar_text_align = center
col.text = rgba(ffffffdd)
bar_buttons_alignment = left
bar_padding = 10
bar_button_padding = 6
icon_on_hover = false
hyprbars-button = rgb(ff5f57), 14, , hyprctl dispatch killactive
hyprbars-button = rgb(febb2e), 14, , hyprctl dispatch togglefloating
hyprbars-button = rgb(28c840), 14, , hyprctl dispatch fullscreen 1
on_double_click = hyprctl dispatch fullscreen 1
}
hyprexpo {
columns = 3
gap_size = 5
bg_col = rgba(1e1e2eaa)
workspace_method = center current
gesture_distance = 300
}
}
bind = $mainMod, e, hyprexpo:expo, toggle
bind = $mainMod ALT, up, exec, /home/coast/.local/bin/mpc-shuf.sh shuf
bind = $mainMod ALT, down, exec, /home/coast/.local/bin/mpc-shuf.sh shufno
bind = $mainMod ALT, right, exec, /home/coast/.local/bin/mpc-shuf.sh next
bind = $mainMod ALT, left, exec, /home/coast/.local/bin/mpc-shuf.sh prev
bind = $mainMod SHIFT, R, exec, /home/coast/.local/bin/mpc-shuf.sh search
bind = $mainMod, slash, exec, /home/coast/.local/bin/mpc-shuf.sh current
2026-02-17 22:49:02 +03:30
xwayland {
enabled = true
}