organize hyprland configs

This commit is contained in:
Benjamin Palko 2025-07-11 14:02:35 -04:00
parent f558e4ff10
commit 42240dd6f6
13 changed files with 79 additions and 257 deletions

View file

@ -0,0 +1,14 @@
animations {
enabled = yes
# Some default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more
bezier = myBezier, 0.05, 0.9, 0.1, 1.05
animation = windows, 1, 7, myBezier
animation = windowsOut, 1, 7, default, popin 80%
animation = border, 1, 10, default
animation = borderangle, 1, 8, default
animation = fade, 1, 7, default
animation = workspaces, 1, 6, default
}

View file

@ -0,0 +1,7 @@
# PyWal Colors
source = ~/.cache/wal/colors-hyprland.conf
general {
col.active_border = $color4 $color13 45deg
col.inactive_border = $color0
}

View file

@ -0,0 +1,19 @@
decoration {
# See https://wiki.hyprland.org/Configuring/Variables/ for more
rounding = 6
blur {
enabled = true
size = 4
passes = 1
ignore_opacity = true
}
shadow {
enabled = true
range = 4
render_power = 3
color = rgba(1a1a1aee)
}
}

View file

@ -22,3 +22,22 @@ env = QT_QPA_PLATFORM,wayland
env = WLR_NO_HARDWARE_CURSORS,1
env = __GL_VRR_ALLOWED,1
env = WLR_DRM_NO_ATOMIC,1
# Themes
env = GTK_THEME,WhiteSur-Dark
env = ICON_THEME,WhiteSur-Dark
env = COLOR_SCHEME,prefer-dark
#Cursors
env = XCURSOR_THEME,Catppuccin-Macchiato-Dark
env = XCURSOR_SIZE,24
env = HYPRCURSOR_THEME,Catppuccin-Macchiato-Dark
env = HYPRCURSOR_SIZE,24
# Fonts
env = FONT_NAME,JetBrainsMono Nerd Font 24
env = DOCUMENT_FONT_NAME,Cantarell 24
env = MONOSPACE_FONT_NAME,JetBrainsMono Nerd Font 5
env = FONT_ANTIALIASING,rgba
env = FONT_HINTING,full

View file

@ -1,10 +1,13 @@
# Set cursor
exec-once=hyprctl setcursor volantes_cursors 24
# Notification Daemon
exec-once = bash ~/.config/hypr/scripts/start-swaync.sh
exec-once = bash ~/.config/hypr/hyprland/scripts/start-swaync.sh
# Idle Daemon
exec-once = hypridle
# Status-bar
# exec-once = bash ~/.config/hypr/scripts/start-waybar.sh
exec-once = bash ~/dotfiles/hypr/scripts/run-ags.sh
exec-once = bash ~/dotfiles/hypr/hyprland/scripts/run-ags.sh
# Emotes
exec-once = emote
# Wallpaper Daemon

View file

@ -0,0 +1,8 @@
#!/bin/sh
CONFIG_FILES="$HOME/dotfiles/ags"
while true; do
sleep 1.6
ags run --gtk4 -d "$CONFIG_FILES" &
inotifywait -e create,modify -r "$CONFIG_FILES"
killall gjs
done

View file

@ -0,0 +1,11 @@
#!/bin/bash
CONFIG_FILES="$HOME/.config/swaync/ $HOME/.cache/wal/"
trap "killall swaync" EXIT
swaync &
while true; do
inotifywait -e create,modify -r $CONFIG_FILES
swaync-client -R & swaync-client -rs
done