diff options
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | install.sh | 6 | ||||
-rw-r--r-- | zsh/aliases | 1 |
3 files changed, 6 insertions, 3 deletions
@@ -4,7 +4,7 @@ Editable text files for configuring various programs on *nix systems. I've been using [Void Linux](https://voidlinux.org/) for quite some years and have decided to finally have my configs out there. -My setup is pretty minimal and I may include an installer in the near future. +My setup is pretty minimal and it comes with an installer sitting in `install.sh`. It's not perfect, but it takes care of the packages I use. Personal forks of [Suckless Utilities](https://suckless.org/) can be found in the following repositories: @@ -222,6 +222,7 @@ fortune-mod-anarchism \ fortune-mod-de \ fortune-mod-void \ freecad \ +fsv \ fuse-devel \ fuse-sshfs \ fuse3 \ @@ -246,6 +247,7 @@ gimp \ git \ github-cli \ gitui \ +glava \ glib-devel \ glmark2 \ glxinfo \ @@ -323,7 +325,6 @@ libXrandr-32bit \ libXrandr-devel \ libXrandr-devel-32bit \ libXtst-32bit \ -libclang-cpp15 \ libcurl-devel \ libdazzle \ libdca \ @@ -397,7 +398,6 @@ macchanger \ mandown \ mathjax \ mdp \ -mdr \ mediainfo \ mesa-32bit \ mesa-ati-dri \ @@ -672,6 +672,8 @@ echo "Increasing max_map_count ..." sudo sysctl -w vm.max_map_count=1048576 sysctl vm.max_map_count +echo "" + echo "Loading config files for important applications..." # i will use move, copy, link, etc commands with their verbose options to show what is being done. diff --git a/zsh/aliases b/zsh/aliases index ea1d859..abfff81 100644 --- a/zsh/aliases +++ b/zsh/aliases @@ -14,6 +14,7 @@ alias lc="wc -l" alias du='du -sh' alias df='df -h' alias cl='clear' +alias cd='z' alias mkdir="mkdir -pv" alias cp="cp -v" |