Update home-manager stuff and some other configs

This commit is contained in:
Tobias Reisinger 2026-08-27 18:47:11 +02:00
commit 9177d97e7a
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
8 changed files with 86 additions and 8 deletions

View file

@ -12,6 +12,7 @@ declare -A mapper=(
["bash"]="$HOME/.bashrc"
["bspwm"]="$HOME/.config/bspwm/bspwmrc"
["completions"]="$HOME/.config/completionsrc"
["dunst"]="$HOME/.config/dunst/dunstrc##template"
["env"]="$HOME/.config/environment"
["env.d"]="$HOME/.config/env.d/"
["git"]="$HOME/.config/git/config"
@ -58,6 +59,7 @@ declare -A directory=(
)
declare -A hooks=(
["dunst"]="dunstctl reload"
["hyprland"]="hyprctl reload"
["projectsrc"]="projects-status"
["qutebrowser"]="qutebrowser :config-source"
@ -101,5 +103,6 @@ hook="${hooks["$1"]}"
if [ -n "$hook" ]
then
echo "Running hook: $hook"
yadm alt
eval "$hook"
fi