add swww and pywal
This commit is contained in:
parent
076fe3ab81
commit
7798e8360c
19 changed files with 604 additions and 51 deletions
11
hypr/config/startup.conf
Normal file
11
hypr/config/startup.conf
Normal 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
|
||||
|
||||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
12
hypr/scripts/start-waybar.sh
Normal file
12
hypr/scripts/start-waybar.sh
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue