diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 4f51ab5..6666576 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -67,7 +67,7 @@ decoration { # https://wiki.hyprland.org/Configuring/Variables/#animations animations { - enabled = yes, please :) + enabled = no, please :) # Default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more @@ -116,5 +116,6 @@ master { # https://wiki.hyprland.org/Configuring/Variables/#misc misc { force_default_wallpaper = 1 # Set to 0 or 1 to disable the anime mascot wallpapers + focus_on_activate = true disable_hyprland_logo = true # If true disables the random hyprland logo / anime girl background. :( } diff --git a/scripts/link-config.sh b/scripts/link-config.sh index 87a2a54..92c98f1 100755 --- a/scripts/link-config.sh +++ b/scripts/link-config.sh @@ -1,5 +1,22 @@ #!/bin/bash +function copy() { + local item=$1 + local dest=${2:-~/.config} + + if [ -d "$item" ]; then + cp -Rfv "$item" "$dest" + else + cp -fv "$item" "$dest" + fi +} + +gpgs=( + "gpg/gpg.conf" + "gpg/gpg-agent.conf" + "gpg/scdaemon.conf" +) + ln -sfv ~/.dotfiles/clipse ~/.config ln -sfv ~/.dotfiles/eza ~/.config ln -sfv ~/.dotfiles/ghostty ~/.config