chore: initial commit

This commit is contained in:
Alexandre Cavalheiro S. Tiago da Silva 2023-11-05 04:53:31 -03:00
commit d3948c7910
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
56 changed files with 8996 additions and 0 deletions

View file

@ -0,0 +1,37 @@
#!/bin/sh
#
# Start waybar.
#
waybar &
#
## Start wallpaper daemon and set one.
#
OUTPUT_1="DP-3"
IMAGE_1="/mnt/internal/personal/wallpapers/wallhaven-g71xoe.jpg"
OUTPUT_2="DP-2"
IMAGE_2="/mnt/internal/personal/wallpapers/wallhaven-3zjexv.jpg"
function load_wallpapers() {
swww img -t any --transition-bezier 0.0,0.0,1.0,1.0 --transition-duration .8 --transition-step 255 --transition-fps 60 -o $OUTPUT_1 $IMAGE_1;
swww img -t any --transition-bezier 0.0,0.0,1.0,1.0 --transition-duration .8 --transition-step 255 --transition-fps 60 -o $OUTPUT_2 $IMAGE_2
}
if ! swww query; then
swww init &
fi
load_wallpapers &
#
# Start notification daemon.
#
mako &
#
# Start authentication polkit.
#
/nix/store/$(ls -la /nix/store | rg '^d.*polkit-kde-agent.*\d$' | awk '{print $9}')/libexec/polkit-kde-authentication-agent-1 &