diff options
author | Timmy Keller <tjk@tjkeller.xyz> | 2022-04-17 10:57:45 -0500 |
---|---|---|
committer | Timmy Keller <tjk@tjkeller.xyz> | 2022-04-17 10:57:45 -0500 |
commit | 51c91732f84707686e92f01d3d6387fba88675bd (patch) | |
tree | 07afd5b34f38d83ced837bb8e7dd66554defe9fc /zsh/zscripts | |
parent | 06b0c7eb739fd430aacbb46f183cea4aaf17300a (diff) | |
download | dotconfig-51c91732f84707686e92f01d3d6387fba88675bd.tar.xz dotconfig-51c91732f84707686e92f01d3d6387fba88675bd.zip |
fixed gitignore file to not work recursively
Diffstat (limited to 'zsh/zscripts')
-rwxr-xr-x | zsh/zscripts/!rootcolors.zsh | 3 | ||||
-rwxr-xr-x | zsh/zscripts/hosts/aliasrc.G3N2.zsh | 6 | ||||
-rwxr-xr-x | zsh/zscripts/hosts/aliasrc.librex60.zsh | 7 | ||||
-rwxr-xr-x | zsh/zscripts/hosts/aliasrc.voidx250.zsh | 8 | ||||
-rwxr-xr-x | zsh/zscripts/hosts/colors.G3N2.zsh | 9 |
5 files changed, 33 insertions, 0 deletions
diff --git a/zsh/zscripts/!rootcolors.zsh b/zsh/zscripts/!rootcolors.zsh new file mode 100755 index 0000000..6ad30a7 --- /dev/null +++ b/zsh/zscripts/!rootcolors.zsh @@ -0,0 +1,3 @@ +#!/usr/bin/env zsh + +[ $(id -u) = 0 ] && declare col{br,name,at,host,dir}=red && clear # Clear to get rid of last login message diff --git a/zsh/zscripts/hosts/aliasrc.G3N2.zsh b/zsh/zscripts/hosts/aliasrc.G3N2.zsh new file mode 100755 index 0000000..8e8d2a5 --- /dev/null +++ b/zsh/zscripts/hosts/aliasrc.G3N2.zsh @@ -0,0 +1,6 @@ +#!/bin/sh + +# Package Management +alias \ + e="sudo emerge" \ + diff --git a/zsh/zscripts/hosts/aliasrc.librex60.zsh b/zsh/zscripts/hosts/aliasrc.librex60.zsh new file mode 100755 index 0000000..87f7e08 --- /dev/null +++ b/zsh/zscripts/hosts/aliasrc.librex60.zsh @@ -0,0 +1,7 @@ +#!/bin/sh + +# Package Management +alias \ + p="sudo pacman" \ + pq="sudo pacman -Ss" \ + diff --git a/zsh/zscripts/hosts/aliasrc.voidx250.zsh b/zsh/zscripts/hosts/aliasrc.voidx250.zsh new file mode 100755 index 0000000..4681ace --- /dev/null +++ b/zsh/zscripts/hosts/aliasrc.voidx250.zsh @@ -0,0 +1,8 @@ +#!/bin/sh + +# Replacement programs +alias \ + xi="sudo xbps-install" \ + xq="xbps-query -R --search" \ + xr="sudo xbps-remove" \ + diff --git a/zsh/zscripts/hosts/colors.G3N2.zsh b/zsh/zscripts/hosts/colors.G3N2.zsh new file mode 100755 index 0000000..dee7ed3 --- /dev/null +++ b/zsh/zscripts/hosts/colors.G3N2.zsh @@ -0,0 +1,9 @@ +#!/usr/bin/env zsh + +if [ -n "$DISPLAY" ]; then + declare col{br,at}=57 + declare col{name,host}=13 + coldir=129 +else + declare col{br,name,at,host,dir}=magenta +fi |