33 lines
778 B
Bash
33 lines
778 B
Bash
#!/bin/bash
|
|
|
|
DOTFILES_DIR="/home/ralsei/config/config"
|
|
|
|
# fastfetch
|
|
ln -sfn "${DOTFILES_DIR}/fastfetch" "${HOME}/.config/fastfetch"
|
|
|
|
# dunst
|
|
ln -sfn "${DOTFILES_DIR}/dunst" "${HOME}/.config/dunst"
|
|
|
|
# hypr
|
|
ln -sfn "${DOTFILES_DIR}/hypr" "${HOME}/.config/hypr"
|
|
|
|
# xdg-desktop-portal
|
|
ln -sfn "${DOTFILES_DIR}/xdg-desktop-portal" "${HOME}/.config/xdg-desktop-portal"
|
|
|
|
# ghostty
|
|
ln -sfn "${DOTFILES_DIR}/ghostty" "${HOME}/.config/ghostty"
|
|
|
|
# wlogout
|
|
ln -sfn "${DOTFILES_DIR}/wlogout" "${HOME}/.config/wlogout"
|
|
|
|
# qt5ct
|
|
ln -sfn "${DOTFILES_DIR}/qt5ct" "${HOME}/.config/qt5ct"
|
|
|
|
# wofi
|
|
ln -sfn "${DOTFILES_DIR}/wofi" "${HOME}/.config/wofi"
|
|
|
|
# dotfile font
|
|
ln -sfn "${DOTFILES_DIR}/dotfile_deps/DotfilesFont.otf" "${HOME}/.local/share/fonts/DotfilesFont.otf"
|
|
|
|
echo "symlinked this that"
|