8000 GitHub - Miguel-Gotor/dotfiles: My distro-agnostic Linux dotfiles
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Miguel-Gotor/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dotfiles

My Linux dotfiles

i3wm i3wm i3wm

  • This setup follows the XDG Base Directory Specification to achieve a clean $HOME

  • Prioritizes frugality over eye candy. Minimalist aesthetic. (aka, I have a potato PC and need to save as many CPU cycles as possible).

  • POSIX-compliant scripts for media control, notifications, volume, brightness, and screenshots

i3wm i3wm

i3wm i3wm

  • Leverages the natural ZSH dotfiles load order to achieve a minimum shell startup overhead: .zshenv -> .zprofile -> .zshrc -> .zlogin -> .zlogout

Only .zshrc is loaded every time for the aliases. Everything else goes to .profile. Setting most of the configuration here makes them available to ttys aswell.

The Zsh login shell sources ~/.zprofile (hence the symlink to ~/.profile)

XDG Base Directory Specification


https://wiki.archlinux.org/title/XDG_Base_Directory

User directories are defined in etc/security/pam_env.conf to make them available to the LightDM xsession wrapper script. This way we can manually config the display manager to honor the default XDG dirs, forcing to check XDG_CONFIG_HOME.

export XDG_CONFIG_HOME="$HOME/.config"
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_DATA_HOME="$HOME/.local/share"
export XDG_STATE_HOME="$HOME/.local/state"

Releases

No releases published

Packages

No packages published

Languages

0