Initial Commit

This commit is contained in:
Liliesh 2025-05-31 19:34:27 +02:00
commit ef6f325fd3
Signed by: liliesh
GPG key ID: 680387646C7BAE8E
22 changed files with 437 additions and 0 deletions

View file

@ -0,0 +1 @@
swaylock --font Ubuntu --font-size 20 --ring-color e7b2eb --key-hl-color 85e8ed --inside-color ffffff --text-caps-lock-color 000000 --image /home/liliesh/Pictures/Wallpapers/836b6427b9d3ff4c.png

View file

@ -0,0 +1,3 @@
#!/bin/bash
killall waybar
waybar &

View file

@ -0,0 +1,5 @@
swayidle -w timeout 300 '~/.config/hypr/scripts/lock.sh' \
timeout 600 'hyprctl dispatch dpms off' \
resume 'hyprctl dispatch dpms on' \
timeout 900 'systemctl suspend' \
before-sleep '~/.config/hypr/scripts/lock.sh' &

View file

@ -0,0 +1,10 @@
#!/bin/bash
SOURCE_DIR=~/Pictures/Wallpapers/Current
while true
do
WALLPAPER=$(find $SOURCE_DIR -type f | shuf -n 1)
swww img --no-resize -t wipe --transition-fps=100 $WALLPAPER
sleep 20m
done