From 2dc486fb891e65658dff83ab34ca8878756a6a90 Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Fri, 18 Oct 2024 21:52:28 -0500 Subject: initial commit --- zscripts/hosts/aliasrc.G3N2.zsh | 6 ++++++ zscripts/hosts/aliasrc.T495.zsh | 1 + zscripts/hosts/aliasrc.desktop.zsh | 12 ++++++++++++ zscripts/hosts/aliasrc.libreX60.zsh | 11 +++++++++++ zscripts/hosts/aliasrc.voidx250.zsh | 8 ++++++++ zscripts/hosts/colors.desktop.zsh | 9 +++++++++ zscripts/hosts/colors.voidx250.zsh | 9 +++++++++ 7 files changed, 56 insertions(+) create mode 100755 zscripts/hosts/aliasrc.G3N2.zsh create mode 120000 zscripts/hosts/aliasrc.T495.zsh create mode 100755 zscripts/hosts/aliasrc.desktop.zsh create mode 100755 zscripts/hosts/aliasrc.libreX60.zsh create mode 100755 zscripts/hosts/aliasrc.voidx250.zsh create mode 100755 zscripts/hosts/colors.desktop.zsh create mode 100755 zscripts/hosts/colors.voidx250.zsh (limited to 'zscripts/hosts') diff --git a/zscripts/hosts/aliasrc.G3N2.zsh b/zscripts/hosts/aliasrc.G3N2.zsh new file mode 100755 index 0000000..8e8d2a5 --- /dev/null +++ b/zscripts/hosts/aliasrc.G3N2.zsh @@ -0,0 +1,6 @@ +#!/bin/sh + +# Package Management +alias \ + e="sudo emerge" \ + diff --git a/zscripts/hosts/aliasrc.T495.zsh b/zscripts/hosts/aliasrc.T495.zsh new file mode 120000 index 0000000..6c84487 --- /dev/null +++ b/zscripts/hosts/aliasrc.T495.zsh @@ -0,0 +1 @@ +aliasrc.desktop.zsh \ No newline at end of file diff --git a/zscripts/hosts/aliasrc.desktop.zsh b/zscripts/hosts/aliasrc.desktop.zsh new file mode 100755 index 0000000..141212f --- /dev/null +++ b/zscripts/hosts/aliasrc.desktop.zsh @@ -0,0 +1,12 @@ +#!/bin/sh + +# Package Management +alias \ + d="sudo dnf" \ + dnf="sudo dnf" \ + +# Shorten program names +alias \ + systemctl="sudo systemctl" \ + sd="systemctl" \ + diff --git a/zscripts/hosts/aliasrc.libreX60.zsh b/zscripts/hosts/aliasrc.libreX60.zsh new file mode 100755 index 0000000..1180171 --- /dev/null +++ b/zscripts/hosts/aliasrc.libreX60.zsh @@ -0,0 +1,11 @@ +#!/bin/sh + +# Package Management +alias \ + apt="sudo apt" \ + +# Shorten program names +alias \ + systemctl="sudo systemctl" \ + sd="systemctl" \ + diff --git a/zscripts/hosts/aliasrc.voidx250.zsh b/zscripts/hosts/aliasrc.voidx250.zsh new file mode 100755 index 0000000..4bb85ea --- /dev/null +++ b/zscripts/hosts/aliasrc.voidx250.zsh @@ -0,0 +1,8 @@ +#!/bin/sh + +# Package Management +alias \ + xi="sudo xbps-install" \ + xq="xbps-query -R --search" \ + xr="sudo xbps-remove" \ + diff --git a/zscripts/hosts/colors.desktop.zsh b/zscripts/hosts/colors.desktop.zsh new file mode 100755 index 0000000..dee7ed3 --- /dev/null +++ b/zscripts/hosts/colors.desktop.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 diff --git a/zscripts/hosts/colors.voidx250.zsh b/zscripts/hosts/colors.voidx250.zsh new file mode 100755 index 0000000..910f1f9 --- /dev/null +++ b/zscripts/hosts/colors.voidx250.zsh @@ -0,0 +1,9 @@ +#!/usr/bin/env zsh + +if [ -n "$DISPLAY" ]; then + declare col{br,at}=green + declare col{name,host}=76 + coldir=40 +else + declare col{br,name,at,host,dir}=green +fi -- cgit v1.2.3