update: hypr&neovim improvements, yazi plugins, waybar tweaking before bigger update

This commit is contained in:
2026-04-25 09:48:48 +03:00
parent 1930ed092f
commit 6cbd52f0db
71 changed files with 1470 additions and 223 deletions
+33
View File
@@ -0,0 +1,33 @@
#!/bin/bash
CONFIG_TIME=$(date +"%Y-%m-%d-%H-%M")
CONFIG_SAVE_DIR="$HOME/tmp/config-$CONFIG_TIME"
mkdir -p "$CONFIG_SAVE_DIR/.config"
mkdir -p "$CONFIG_SAVE_DIR/.themes"
echo 'Created config save directory'
cp -r ~/config-scripts "$CONFIG_SAVE_DIR/config-scripts"
cp -r ~/.themes/Colloid-Transparent-Dracula "$CONFIG_SAVE_DIR/.themes/Colloid-Transparent-Dracula/"
cp -r ~/.config/nvim "$CONFIG_SAVE_DIR/.config/nvim/"
cp -r ~/.config/rofi "$CONFIG_SAVE_DIR/.config/rofi/"
cp -r ~/.config/yazi "$CONFIG_SAVE_DIR/.config/yazi/"
cp -r ~/.config/hypr "$CONFIG_SAVE_DIR/.config/hypr/"
cp -r ~/.config/waybar "$CONFIG_SAVE_DIR/.config/waybar/"
cp -r ~/.config/dunst "$CONFIG_SAVE_DIR/.config/dunst/"
cp -r ~/.config/kitty "$CONFIG_SAVE_DIR/.config/kitty/"
cp -r ~/.config/fastfetch "$CONFIG_SAVE_DIR/.config/fastfetch/"
cp -r ~/.inputrc "$CONFIG_SAVE_DIR/.inputrc"
cp -r ~/.bash_profile "$CONFIG_SAVE_DIR/.bash_profile"
cp -r ~/.bashrc "$CONFIG_SAVE_DIR/.bashrc"
cp -r ~/.bash_exports "$CONFIG_SAVE_DIR/.bash_exports"
cp -r ~/.bash_aliases "$CONFIG_SAVE_DIR/.bash_aliases"
cp -r ~/.ideavimrc "$CONFIG_SAVE_DIR/.ideavimrc"
echo 'Copied configs'
zip -r "$HOME/tmp/config-$CONFIG_TIME.zip" "$CONFIG_SAVE_DIR"
echo 'Compressed the configs'
echo -e "\e[32mDone!\e[0m"