dotfiles

My ~/.config directory

  1. 1
  2. 2
  3. 3
function pacreq -d "Find manually installed packages that are dependencies of other installed packages"
    pacman -Qi (pacman -Qeq) | grep "Name\|Required" | grep -v None | grep "Required" -B1
end