All Projects → rememberYou → dotfiles

rememberYou / dotfiles

Licence: other
🏡 Personal dotfiles configuration

Programming Languages

shell
77523 projects
python
139335 projects - #7 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to dotfiles

dotfiles
My dotfiles and colorschemes for sway and a variety of other programs.
Stars: ✭ 55 (-24.66%)
Mutual labels:  sway, alacritty, waybar, wofi
dotfiles
My arch setup script and dotfiles
Stars: ✭ 37 (-49.32%)
Mutual labels:  tmux, sway, alacritty, waybar
dotfiles
dotfiles for the command line home
Stars: ✭ 21 (-71.23%)
Mutual labels:  tmux, stow, alacritty
Dotfiles
If there is a shell, there is a way!
Stars: ✭ 112 (+53.42%)
Mutual labels:  tmux, mpd, mpv
dotfiles
💾 personal configuration files
Stars: ✭ 42 (-42.47%)
Mutual labels:  tmux, stow, alacritty
dotfiles
My personal dotfiles repository
Stars: ✭ 36 (-50.68%)
Mutual labels:  mpd, ncmpcpp, newsboat
dotfiles
My dotfiles, with an out-of-date install-script. Arch, Tiling WM (i3, sway), ZSH, Neovim
Stars: ✭ 20 (-72.6%)
Mutual labels:  tmux, sway, alacritty
dotfiles
My dotfiles for Bash/Zsh, Vim/Neovim, Doom Emacs, tmux, Git, terminal emulators, JupyterLab, aria2, mpv, Nix and Homebrew
Stars: ✭ 149 (+104.11%)
Mutual labels:  tmux, mpv, alacritty
dotfiles
Personal dotfiles for macOS and Manjaro.
Stars: ✭ 20 (-72.6%)
Mutual labels:  tmux, sway, alacritty
keyd
A key remapping daemon for linux.
Stars: ✭ 687 (+841.1%)
Mutual labels:  x11, sway
dotfiles
My personal set of dotfiles (Managed with Stow)
Stars: ✭ 34 (-53.42%)
Mutual labels:  tmux, sway
thirtytwopixels
🖼️ wireless LED album art display for spotify, mpd+ncmpcpp and other players.
Stars: ✭ 46 (-36.99%)
Mutual labels:  mpd, ncmpcpp
configuration
Config files
Stars: ✭ 12 (-83.56%)
Mutual labels:  tmux, qutebrowser
dotfiles
github.com/casprwang/dotfiles
Stars: ✭ 30 (-58.9%)
Mutual labels:  tmux, alacritty
Dotfiles
My dotfiles, managed with GNU stow
Stars: ✭ 56 (-23.29%)
Mutual labels:  tmux, mpd
modern-linux.info
Learning Modern Linux book website
Stars: ✭ 35 (-52.05%)
Mutual labels:  tmux, systemd
dotfiles
This is the home for my environment configurations, scripts, and exported tool settings. Major clean up and revamp in June 2021. Uses stow for package management.
Stars: ✭ 57 (-21.92%)
Mutual labels:  tmux, stow
cfg
my dotfiles
Stars: ✭ 26 (-64.38%)
Mutual labels:  tmux, mpv
dotfiles
mac OS, Arch Linux, and Debian/Ubuntu
Stars: ✭ 286 (+291.78%)
Mutual labels:  tmux, xdg
dotfiles
My tiling configs
Stars: ✭ 72 (-1.37%)
Mutual labels:  mpv, sway

Actions Status

This repository contains all of my dotfiles configuration.


These dotfiles allow me to make my daily life easier by saving me time and easily meeting my needs.

I try to keep these dotfiles tidy and up to date. I invite you to take a look at it to get different ideas for your dotfiles and why not leave comments, suggestions, questions and bug reports if something seems odd to you.

Finally, this repository has wiki pages to better understand some of the choices I have made and allow me to answer any questions you may have have about these dotfiles. Feel free to visit them

List of files:

 bash            ➔ bash settings, aliases, and custom prompts
 bin             ➔ various useful scripts (e.g., borg and rofi)
 foot            ➔ fast, lightweight, and minimalistic Wayland terminal emulator
 git             ➔ global git config and aliases
 gnupg           ➔ allows you to encrypt and sign your data and communication
 htop            ➔ interactive process viewer
 isync           ➔ capable of synchronizing mail on IMAP server with local Maildir folder
 mpd             ➔ music player daemon
 mpv             ➔ media player based on MPlayer and the now unmaintained mplayer2
 ncmpcpp         ➔ mpd client
 neofetch        ➔ CLI system information tool
 newsboat        ➔ RSS/Atom feed reader for text terminals
 python          ➔ specific to Python
 qutebrowser     ➔ keyboard-focused browser with a minimal GUI
 rofi            ➔ window switcher, application launcher, ssh dialog and dmenu replacement
 sh              ➔ common to all shells (e.g., aliases and environment variables)
 ssh             ➔ SSH settings
 sway            ➔ i3-compatible Wayland compositor
 systemd         ➔ systemd units
 tmux            ➔ terminal multiplexer
 waybar          ➔ Wayland bar for sway and Wlroots based compositors
 x11             ➔ X11 settings
 zsh             ➔ zshell settings, aliases, and custom prompts

NOTE: it is still possible to access my old dotfiles that I no longer use, in case they can help you.

Structure

I structured my dotfiles so that the user's home is as clean as possible in accordance with the XDG base directory specification.

In other words, this means that the following environment variables are defined:

Variable Location
XDG_BIN_HOME ~/.local/bin
XDG_CACHE_HOME ~/.cache
XDG_CONFIG_HOME ~/.config
XDG_DATA_HOME ~/.local/share
XDG_LIB_HOME ~/.local/lib

NOTE: XDG_BIN_HOME and XDG_LIB_HOME are non-standard.

Quick preview

A non-exhaustive preview of the environment I use on a daily basis:

Last Updated: 29 September 2020.

NOTE: you can find my wallpapers here.

Wall Global Newsboat Rofi

Dotfiles Manager

I'm using GNU Stow a free, lightweight dotfiles manager written in Perl to manages my dotfiles.

What's make differentiates it from other dotfiles managers is that it does not require various Python, Ruby or Perl dependencies like most dotfiles manager.

With that, it is easy to share files among multiple users or computers with a few command lines.

Getting Started

No matter what your Linux distribution, stow can easily be installed according to your package manager:

sudo pacman -S stow
sudo apt-get install stow

For macOS users:

brew install stow

Once the installation is complete, make a clone of the repository:

git clone https://github.com/rememberYou/dotfiles.git .dotfiles

You can now install any configurations you wish to copy using GNU Stow:

# Make sure you are in the right directory
cd .dotfiles

# Example to install the sway config
stow sway

# Uninstall the sway config
stow -D sway

If you want to install all the configurations, you can do it directly with stowsym.sh:

# Change permission to execute the script
chmod +x stowsym.sh

# Installation of configuration files
./stowsym.sh -i

# Deleting of configuration files
./stowsym.sh -d

Easy, isn't it? For those who want to find my GNU Emacs configuration files, they are available: here.

For the configuration of zsh and bash, you will need to create two symbolic aliases:

ln -s ~/.config/bash/.bashrc ~
ln -s ~/.config/zsh/zshenv .zshenv

The reasons for this are that bash and zsh do not allow the possibility to follow the specifications of the XDG base directory.

NOTE: the .bashrc file cannot be renamed to bashrc except for a few system manipulations, which is not what I recommend.

Contributions

Various functions may be optimized or spelling errors may occur. If you want to make your own correction on these dotfiles, you are free to do so.

Please note that I can't guarantee that your changes will be accepted.

License

The code is unlicensed, take what you like.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].