From 4186d162bd2cc3b9b45851c12462f1acba090852 Mon Sep 17 00:00:00 2001 From: Shubham Saini Date: Sun, 23 Feb 2020 18:20:14 +0530 Subject: gentoo:time wasted --- bin/.local/bin/dotstow | 21 +++++++++++++++++ bin/.local/bin/fetch | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++ bin/.local/bin/gitit | 10 ++++++++ bin/.local/bin/unblock | 9 ++++++++ 4 files changed, 103 insertions(+) create mode 100755 bin/.local/bin/dotstow create mode 100755 bin/.local/bin/fetch create mode 100755 bin/.local/bin/gitit create mode 100755 bin/.local/bin/unblock (limited to 'bin') diff --git a/bin/.local/bin/dotstow b/bin/.local/bin/dotstow new file mode 100755 index 0000000..bcadc5e --- /dev/null +++ b/bin/.local/bin/dotstow @@ -0,0 +1,21 @@ +#!/bin/bash + +# This script will Stow all the dotfiles located in the ~/dotfiles folder. +# The -R flag is used to force a 'restow' which will remove any existing symlinks before attempting to Stow. + +echo "Stowing Dotfiles..."; + +cd ~/dotfiles +for file in ~/dotfiles/*; do + # Only run Stow on the directories in the dotfiles folder and not the individual files. + # Using 'basename' strips the filepath from the directory name. + if [ -d ${file} ]; then + stow -R $(basename $file) + echo "$(basename $file) stowed."; + fi +done + +# Return back to the your PWD from before you ran the script +cd ~- + +echo 'All stowed'; diff --git a/bin/.local/bin/fetch b/bin/.local/bin/fetch new file mode 100755 index 0000000..609850c --- /dev/null +++ b/bin/.local/bin/fetch @@ -0,0 +1,63 @@ +#!/bin/sh +# +# ufetch-arch - tiny system info for arch + +## INFO + +# user is already defined +host="$(hostname)" +os='Arch Linux' +kernel="$(uname -sr)" +uptime="$(uptime -p | sed 's/up //')" +packages="$(pacman -Q | wc -l)" +shell="$(basename ${SHELL})" + +if [ -z "${WM}" ]; then + if [ "${XDG_CURRENT_DESKTOP}" ]; then + envtype='DE' + WM="${XDG_CURRENT_DESKTOP}" + elif [ "${DESKTOP_SESSION}" ]; then + envtype='DE' + WM="${DESKTOP_SESSION}" + else + envtype='WM' + WM="$(tail -n 1 "${HOME}/.xinitrc" | cut -d ' ' -f 2)" + fi +else + envtype='WM' +fi + +## DEFINE COLORS + +# probably don't change these +bold="$(tput bold)" +black="$(tput setaf 0)" +red="$(tput setaf 1)" +green="$(tput setaf 2)" +yellow="$(tput setaf 3)" +blue="$(tput setaf 4)" +magenta="$(tput setaf 5)" +cyan="$(tput setaf 6)" +white="$(tput setaf 7)" +reset="$(tput sgr0)" + +# you can change these +lc="${reset}${bold}${cyan}" # labels +nc="${reset}${bold}${cyan}" # user and hostname +ic="${reset}${bold}${white}" # info +c0="${reset}${bold}${cyan}" # first color +c1="${reset}${cyan}" # second color + +## OUTPUT + +cat <