From bde9d8e1c9a6e2213fc7d40298d43a14f2e99359 Mon Sep 17 00:00:00 2001 From: Shubham Saini Date: Sat, 22 May 2021 18:26:08 +0530 Subject: cleaned the repo --- bin/.bin/lay_both | 2 -- bin/.bin/lay_hdmi | 2 -- bin/.bin/lemonconf | 74 ------------------------------------------ bin/.bin/pcolor | 3 -- bin/.bin/statusbar | 45 ------------------------- bin/.bin/update-resolv-conf.sh | 71 ---------------------------------------- 6 files changed, 197 deletions(-) delete mode 100755 bin/.bin/lay_both delete mode 100755 bin/.bin/lay_hdmi delete mode 100755 bin/.bin/lemonconf delete mode 100755 bin/.bin/pcolor delete mode 100755 bin/.bin/statusbar delete mode 100755 bin/.bin/update-resolv-conf.sh (limited to 'bin/.bin') diff --git a/bin/.bin/lay_both b/bin/.bin/lay_both deleted file mode 100755 index 21eb5ec..0000000 --- a/bin/.bin/lay_both +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -xrandr --output eDP-1 --primary --mode 1920x1080 --pos 0x0 --rotate normal --output HDMI-1 --mode 1366x768 --pos 0x0 --rotate normal diff --git a/bin/.bin/lay_hdmi b/bin/.bin/lay_hdmi deleted file mode 100755 index 6ddea55..0000000 --- a/bin/.bin/lay_hdmi +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -xrandr --output eDP-1 --off --output HDMI-1 --mode 1366x768 --scale 1.4x1.4 --pos 0x0 --rotate normal diff --git a/bin/.bin/lemonconf b/bin/.bin/lemonconf deleted file mode 100755 index cb5e505..0000000 --- a/bin/.bin/lemonconf +++ /dev/null @@ -1,74 +0,0 @@ -#!/bin/bash -# Outputs a configuration for lemonbar - -vol(){ - vol=$(pulsemixer --get-volume | awk '{print $1}') - mute=$(pulsemixer --get-mute) - if [ "$mute" == 1 ]; then - echo -e "%{F#787878}vol%{F-} muted " - elif [ "$mute" == 0 ]; then - echo -e "%{F#787878}vol%{F-} $vol% " - fi -} - -bat() { - power=$(cat /sys/class/power_supply/BAT0/capacity) - status=$(cat /sys/class/power_supply/BAT0/status) - if [ "$status" == "Charging" ]; then - echo -e "%{F#787878}bat%{F-} +$power% " - elif [ "$status" == "Discharging" ]; then - echo -e "%{F#787878}bat%{F-} $power% " - fi -} - -dte() { - dte=$(date +"%a, %b %d") - echo -e "%{F#787878}date%{F-} $dte " -} - -tie() { - tme=$(date +"%I:%M %P") - echo -e "%{F#787878}time%{F-} $tme " -} - -groups() { - cur=`xprop -root _NET_CURRENT_DESKTOP | awk '{print $3}'` - tot=`xprop -root _NET_NUMBER_OF_DESKTOPS | awk '{print $3}'` - - for w in `seq 0 $((cur - 1))`; do line="${line}  "; done - line="${line}  " - for w in `seq $((cur + 2)) $tot`; do line="${line}  "; done - echo $line -} - -workspaces() { - all=$(bspc query -D) - occupied=$(bspc query -D -d .occupied) - current=$(bspc query -D -d .focused) - result="" - padding=" " - while IFS= read -r line; do - # Get the name of the current desktop - name="" - if [[ "$occupied" == *"$line"* ]]; - then - name="" - fi - - if [[ "$current" == *"$line"* ]]; - then - name="" - fi - - result="$result$padding" - result="$result$name" - result="$result$padding" - done <<< "$all" - echo -e "$result" -} - -while true; do - echo " $(vol) $(bat) $(tie) $(dte) %{F#787878}%{r}$(workspaces)%{F-} " - xdo above -t $(xdo id -n root) $(xdo id -n lemonbar) - sleep 3 -done diff --git a/bin/.bin/pcolor b/bin/.bin/pcolor deleted file mode 100755 index 4cc28a0..0000000 --- a/bin/.bin/pcolor +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash -pcs() { for i in {0..7}; do echo -en "\e[${1}$((30+$i))m \u2588\u2588 \e[0m"; done; } -printf "\n%s\n%s\n\n" "$(pcs)" "$(pcs '1;')" diff --git a/bin/.bin/statusbar b/bin/.bin/statusbar deleted file mode 100755 index c506244..0000000 --- a/bin/.bin/statusbar +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/bash - -# Color definitions. -export BLK="\e[30m" -export RED="\e[31m" -export GRN="\e[32m" -export YLW="\e[33m" -export BLU="\e[34m" -export PUR="\e[35m" -export CYN="\e[36m" -export RST="\e[0m" - -# Other formatting. -export BLD="\e[1m" -export DIM="\e[2m" -export ITA="\e[3m" -export UND="\e[4m" -export FLS="\e[5m" -export REV="\e[7m" -export INV="\e[8m" -export STR="\e[9m" - -vol(){ - vol=$(pulsemixer --get-volume | awk '{print $1}') - echo -e "vol $vol%" -} - -bat() { - power=$(cat /sys/class/power_supply/BAT0/capacity) - echo -e "bat $power%" -} - -dte() { - dte=$(date +"%A, %B %d") - echo -e "date $dte" -} - -tie() { - tme=$(date +"%I:%M %p") - echo -e "time $tme" -} -while :; do - echo "$(vol) $(bat) $(tie) $(dte)" - sleep 2 -done diff --git a/bin/.bin/update-resolv-conf.sh b/bin/.bin/update-resolv-conf.sh deleted file mode 100755 index 16622a1..0000000 --- a/bin/.bin/update-resolv-conf.sh +++ /dev/null @@ -1,71 +0,0 @@ -#!/usr/bin/env bash -# -# Parses DHCP options from openvpn to update resolv.conf -# To use set as 'up' and 'down' script in your openvpn *.conf: -# up /etc/openvpn/update-resolv-conf -# down /etc/openvpn/update-resolv-conf -# -# Used snippets of resolvconf script by Thomas Hood -# and Chris Hanson -# Licensed under the GNU GPL. See /usr/share/common-licenses/GPL. -# 07/2013 colin@daedrum.net Fixed intet name -# 05/2006 chlauber@bnc.ch -# -# Example envs set from openvpn: -# foreign_option_1='dhcp-option DNS 193.43.27.132' -# foreign_option_2='dhcp-option DNS 193.43.27.133' -# foreign_option_3='dhcp-option DOMAIN be.bnc.ch' -# foreign_option_4='dhcp-option DOMAIN-SEARCH bnc.local' - -## The 'type' builtins will look for file in $PATH variable, so we set the -## PATH below. You might need to directly set the path to 'resolvconf' -## manually if it still doesn't work, i.e. -## RESOLVCONF=/usr/sbin/resolvconf -export PATH=$PATH:/sbin:/usr/sbin:/bin:/usr/bin -RESOLVCONF=$(type -p resolvconf) - -case $script_type in - -up) - for optionname in ${!foreign_option_*} ; do - option="${!optionname}" - echo $option - part1=$(echo "$option" | cut -d " " -f 1) - if [ "$part1" == "dhcp-option" ] ; then - part2=$(echo "$option" | cut -d " " -f 2) - part3=$(echo "$option" | cut -d " " -f 3) - if [ "$part2" == "DNS" ] ; then - IF_DNS_NAMESERVERS="$IF_DNS_NAMESERVERS $part3" - fi - if [[ "$part2" == "DOMAIN" || "$part2" == "DOMAIN-SEARCH" ]] ; then - IF_DNS_SEARCH="$IF_DNS_SEARCH $part3" - fi - fi - done - R="" - if [ "$IF_DNS_SEARCH" ]; then - R="search " - for DS in $IF_DNS_SEARCH ; do - R="${R} $DS" - done - R="${R} -" - fi - - for NS in $IF_DNS_NAMESERVERS ; do - R="${R}nameserver $NS -" - done - #echo -n "$R" | $RESOLVCONF -x -p -a "${dev}" - echo -n "$R" | $RESOLVCONF -x -a "${dev}.inet" - ;; -down) - $RESOLVCONF -d "${dev}.inet" - ;; -esac - -# Workaround / jm@epiclabs.io -# force exit with no errors. Due to an apparent conflict with the Network Manager -# $RESOLVCONF sometimes exits with error code 6 even though it has performed the -# action correctly and OpenVPN shuts down. -exit 0 -- cgit v1.2.3