Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 15 additions & 11 deletions HyprV/hypr/hyprland.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)$
Expand Down
11 changes: 6 additions & 5 deletions set-hypr
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -71,7 +72,7 @@ install_stage=(
noto-fonts-emoji
lxappearance
xfce4-settings
nwg-look-bin
nwg-look
sddm
)

Expand Down Expand Up @@ -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 &
Expand Down Expand Up @@ -389,4 +390,4 @@ if [[ $HYP == "Y" || $HYP == "y" ]]; then
exec sudo systemctl start sddm &>> $INSTLOG
else
exit
fi
fi