add swww and pywal

This commit is contained in:
Benjamin Palko 2024-03-22 16:05:37 -05:00
parent 076fe3ab81
commit 7798e8360c
19 changed files with 604 additions and 51 deletions

11
hypr/config/startup.conf Normal file
View file

@ -0,0 +1,11 @@
# Notification Daemon
exec-once = swaync
# Idle Daemon
exec-once = hypridle
# Status-bar
exec-once = bash ~/.config/hypr/scripts/start-waybar.sh
# Emotes
exec-once = emote
# Wallpaper Daemon
exec-once = swww init

View file

@ -19,8 +19,10 @@ monitor=,preferred,auto,auto
# Execute your favorite apps at launch
# exec-once = waybar & hyprpaper & firefox
source = ~/.config/hypr/config/startup.conf
exec-once = hypridle & waybar & emote
# PyWal Colors
source = ~/.cache/wal/colors-hyprland.conf
# Source a file (multi-file configs)
# source = ~/.config/hypr/myColors.conf
@ -61,8 +63,8 @@ general {
gaps_in = 5
gaps_out = 20
border_size = 2
col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg
col.inactive_border = rgba(595959aa)
col.active_border = $color4 $color13 45deg
col.inactive_border = $color0
layout = dwindle

View file

@ -0,0 +1,12 @@
#!/bin/bash
CONFIG_FILES="$HOME/.config/waybar/ $HOME/.cache/wal/"
trap "killall waybar" EXIT
while true; do
sleep 0.4
waybar &
inotifywait -e create,modify -r $CONFIG_FILES
killall waybar
done