Skip to content

rafasgj/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dotfiles

These are some configurations files I often use, and had to backup for a system upgrade.

What a better place to backup it and share than with Git and Github? ;)

Software Install

The software directory contain list- of packages that should be installed. Use sed '/^#/d' < $FILENAME | sudo xargs dnf -y install to install the package list.

createlinks.sh

Script to create directories and links to configuration files and utilities.

bashrc.d

For bash configuration your .bashrc should have:

if [ -d ~/.bashrc.d ]
then
    for rc in $(find "${HOME)/.bashrc.d" -type f)
    do
        . "$rc"
    done
    unset rc
fi

About

A dotfiles repository.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published