1
0
Fork
You've already forked dotfiles
0
Personal dotfiles
Shell 99%
Makefile 1%
Find a file
2025年05月16日 19:13:48 +02:00
bash Ensure git prompt is sourced before customizing prompt 2024年11月03日 01:06:41 +01:00
curl Manage dotfiles with GNU Stow and GNU Make 2023年12月09日 04:02:02 +01:00
dev-android/.bashrc.d Manage dotfiles with GNU Stow and GNU Make 2023年12月09日 04:02:02 +01:00
dev-nodejs/.bashrc.d Manage dotfiles with GNU Stow and GNU Make 2023年12月09日 04:02:02 +01:00
dev-python/.bashrc.d Manage dotfiles with GNU Stow and GNU Make 2023年12月09日 04:02:02 +01:00
dev-ruby Manage dotfiles with GNU Stow and GNU Make 2023年12月09日 04:02:02 +01:00
empty-repl-history Manage dotfiles with GNU Stow and GNU Make 2023年12月09日 04:02:02 +01:00
git Configure libsecret git credential helper 2024年11月03日 01:37:37 +01:00
nano Manage dotfiles with GNU Stow and GNU Make 2023年12月09日 04:02:02 +01:00
nautilus-scripts/.local/share/nautilus/scripts Add photo rename Nautilus script 2025年05月16日 19:13:48 +02:00
.gitignore Change dotfiles cloning strategy 2019年08月17日 02:40:20 +02:00
Makefile Manage dotfiles with GNU Stow and GNU Make 2023年12月09日 04:02:02 +01:00
README.md Manage dotfiles with GNU Stow and GNU Make 2023年12月09日 04:02:02 +01:00

dotfiles

Personal dotfiles for my Linux machines.

Installing

Clone the repo into your home directory (mind the dot):

git clone https://gitlab.com/Roboe/dotfiles.git ~/.dotfiles

Ensure you have GNU Stow installed:

# Debian/Ubuntu
sudo apt install stow
# Fedora
sudo dnf install stow

Then, execute the Makefile to create symbolic links:

cd ~/.dotfiles
make

If conflicts pop up, backup those files before trying again. E.g.:

CONFLICTS=".bash_logout .bashrc .profile"
for DOTFILE in $CONFLICTS; do mv ~/$DOTFILE ~/$DOTFILE.orig; done