diff --git a/HyprV/hypr/hyprland.conf b/HyprV/hypr/hyprland.conf index c645a905..3eede3b8 100644 --- a/HyprV/hypr/hyprland.conf +++ b/HyprV/hypr/hyprland.conf @@ -72,11 +72,12 @@ decoration { blurls = lockscreen - drop_shadow = yes - shadow_range = 4 - shadow_render_power = 3 - col.shadow = rgba(1a1a1aee) -} + shadow { + enabled = true + range = 4 + render_power = 3 + color = rgba(1a1a1aee) + } animations { enabled = yes @@ -97,22 +98,25 @@ dwindle { preserve_split = yes # you probably want this } -master { - # See https://wiki.hyprland.org/Configuring/Master-Layout/ for more - new_is_master = true +# See https://wiki.hyprland.org/Configuring/Master-Layout/ for more +master { + new_status = master } -gestures { - # See https://wiki.hyprland.org/Configuring/Variables/ for more +# See https://wiki.hyprland.org/Configuring/Variables/ for more +gestures { workspace_swipe = off } # Example per-device config # See https://wiki.hyprland.org/Configuring/Keywords/#executing for more -device:epic mouse V1 { + +device { + name = epic-mouse-v1 sensitivity = -0.5 } + # Example windowrule v1 #windowrule = float, ^(kitty)$ windowrule = float,^(pavucontrol)$ diff --git a/set-hypr b/set-hypr index 3399236d..ffc7b8e0 100755 --- a/set-hypr +++ b/set-hypr @@ -3,11 +3,12 @@ # HyprV4 By SolDoesTech - https://www.youtube.com/@SolDoesTech # License..? - You may copy, edit and ditribute this script any way you like, enjoy! :) -# The follwoing will attempt to install all needed packages to run Hyprland +# The following will attempt to install all needed packages to run Hyprland # This is a quick and dirty script there are some error checking # IMPORTANT - This script is meant to run on a clean fresh Arch install on physical hardware -# Define the software that would be inbstalled +# Define the software that would be installed + #Need some prep work prep_stage=( qt5-wayland @@ -71,7 +72,7 @@ install_stage=( noto-fonts-emoji lxappearance xfce4-settings - nwg-look-bin + nwg-look sddm ) @@ -186,7 +187,7 @@ fi #### Check for package manager #### if [ ! -f /sbin/yay ]; then - echo -en "$CNT - Configuering yay." + echo -en "$CNT - Configuring yay." git clone https://aur.archlinux.org/yay.git &>> $INSTLOG cd yay makepkg -si --noconfirm &>> ../$INSTLOG & @@ -389,4 +390,4 @@ if [[ $HYP == "Y" || $HYP == "y" ]]; then exec sudo systemctl start sddm &>> $INSTLOG else exit -fi \ No newline at end of file +fi