2026-03-23 12:48:05 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
set -e
|
|
|
|
|
DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
|
|
|
|
|
|
ln -sf "$DIR/tmux.conf" ~/.tmux.conf
|
|
|
|
|
ln -sf "$DIR/gitconfig" ~/.gitconfig
|
|
|
|
|
|
2026-03-24 11:06:10 +00:00
|
|
|
mkdir -p ~/.local/share/mc/skins
|
|
|
|
|
ln -sf "$DIR/mc-nord.ini" ~/.local/share/mc/skins/nord.ini
|
|
|
|
|
mkdir -p ~/.config/mc
|
|
|
|
|
grep -q "^skin=" ~/.config/mc/ini 2>/dev/null && sed -i "s/^skin=.*/skin=nord/" ~/.config/mc/ini || echo -e "[Midnight-Commander]\nskin=nord" >> ~/.config/mc/ini
|
|
|
|
|
|
2026-03-23 12:48:05 +00:00
|
|
|
echo "source $DIR/aliases.sh" >> ~/.bashrc 2>/dev/null || true
|
|
|
|
|
echo "Done. Restart your shell or: source ~/.bashrc"
|