diff --git a/hyprland/.config/hypr/hyprland.conf b/hyprland/.config/hypr/hyprland.conf index c0f31c8..ca6d6f0 100644 --- a/hyprland/.config/hypr/hyprland.conf +++ b/hyprland/.config/hypr/hyprland.conf @@ -8,7 +8,7 @@ input { general { gaps_in = 3 gaps_out = 4 - layout = dwindle + layout = master border_size = 3 col.inactive_border = 0xff5387ac col.active_border = 0xffac7853 @@ -24,7 +24,7 @@ decoration { } animations { - enabled = true + enabled = false } misc { @@ -39,14 +39,14 @@ binds { } $menu = wofi -S run -$terminal = kitty || alacritty +$terminal = alacritty || kitty $mainMod = SUPER bind = $mainMod, P, exec, $menu bind = $mainMod SHIFT, Return, exec, $terminal -bind = $mainMod, Return, exec, $terminal -bind = $mainMod ALT, Return, layoutmsg,swapwithmaster master +bind = $mainMod ALT, Return, exec, $terminal +bind = $mainMod, Return, layoutmsg,swapwithmaster master bind = $mainMod CONTROL SHIFT, Q, exit bind = $mainMod, Q, exec, hyprctl reload bind = $mainMod CONTROL SHIFT, C, killactive diff --git a/shell/.profile b/shell/.profile index 514d49b..c410134 100644 --- a/shell/.profile +++ b/shell/.profile @@ -29,10 +29,10 @@ export PATH # start X or Hyprland at login if [[ -z "$DISPLAY" && -z "$WAYLAND_DISPLAY" && "$XDG_VTNR" -eq 1 ]]; then - if which river > /dev/null && [ -d ~/.config/river ]; then - exec river - elif which Hyprland > /dev/null && [ -d ~/.config/hypr ]; then + if which Hyprland > /dev/null && [ -d ~/.config/hypr ]; then exec Hyprland + elif which river > /dev/null && [ -d ~/.config/river ]; then + exec river elif which /usr/bin/sx > /dev/null; then exec /usr/bin/sx ~/.xsession fi