From 881108f51baee0652300325a1dd1e071e2866eed Mon Sep 17 00:00:00 2001 From: self Date: Thu, 5 Jan 2023 16:53:16 +0000 Subject: Removed scripts, as moved to orgd --- scripts/backup-directory | 11 ----------- scripts/change-audio | 21 --------------------- scripts/change-light | 4 ---- scripts/powermenu | 9 --------- scripts/vpnc | 4 ---- scripts/vpnd | 4 ---- scripts/xdwm | 5 ----- scripts/xferrwm | 3 --- scripts/xplasma | 4 ---- 9 files changed, 65 deletions(-) delete mode 100644 scripts/backup-directory delete mode 100755 scripts/change-audio delete mode 100755 scripts/change-light delete mode 100755 scripts/powermenu delete mode 100755 scripts/vpnc delete mode 100755 scripts/vpnd delete mode 100755 scripts/xdwm delete mode 100755 scripts/xferrwm delete mode 100644 scripts/xplasma diff --git a/scripts/backup-directory b/scripts/backup-directory deleted file mode 100644 index 2b754f0..0000000 --- a/scripts/backup-directory +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh - -# Backup a directory using GPG. -# Usage: backup-directory directory-name - -DIRECTORY="$1" - -7z a "$DIRECTORY.7z" "$DIRECTORY" -gpg --encrypt --armor --symmetric --output "$DIRECTORY.7z.asc" "$DIRECTORY.7z" -sha256sum "$DIRECTORY.7z.asc" | cut -c1-64 > "$DIRECTORY.asc.sum" - diff --git a/scripts/change-audio b/scripts/change-audio deleted file mode 100755 index 2dafe73..0000000 --- a/scripts/change-audio +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash -# change-audio -# Shamelessly copied from the Arch Linux wiki. - -# Arbitrary but unique message tag -msgTag="myvolume" - -# Change the volume using alsa(might differ if you use pulseaudio) -amixer -M -c 0 set Master "$@" > /dev/null - -# Query amixer for the current volume and whether or not the speaker is muted -volume="$(amixer -M -c 0 get Master | tail -1 | awk '{print $4}' | sed 's/[^0-9]*//g')" -mute="$(amixer -M -c 0 get Master | tail -1 | awk '{print $6}' | sed 's/[^a-z]*//g')" -if [[ $volume == 0 || "$mute" == "off" ]]; then - # Show the sound muted notification - dunstify -a "changeVolume" -u low -i audio-volume-muted -h string:x-dunst-stack-tag:$msgTag "Volume muted" -else - # Show the volume notification - dunstify -a "changeVolume" -u low -i audio-volume-high -h string:x-dunst-stack-tag:$msgTag \ - -h int:value:"$volume" "Volume: ${volume}%" -fi diff --git a/scripts/change-light b/scripts/change-light deleted file mode 100755 index 4658349..0000000 --- a/scripts/change-light +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -xbacklight -$1 $2 -pkill -RTMIN+2 dwmblocks diff --git a/scripts/powermenu b/scripts/powermenu deleted file mode 100755 index e9d6a2a..0000000 --- a/scripts/powermenu +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -resp=$(printf "♻️ shutdown\n⏼ reboot\n lock\nrestart dwm\nclose X" | dmenu) - -[ "$resp" = "♻️ shutdown" ] && sudo poweroff -[ "$resp" = "⏼ reboot" ] && sudo reboot -[ "$resp" = " lock" ] && slock -[ "$resp" = "restart dwm" ] && pkill dwm -[ "$resp" = "close X" ] && pkill xinit diff --git a/scripts/vpnc b/scripts/vpnc deleted file mode 100755 index 0a09fc0..0000000 --- a/scripts/vpnc +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -sudo protonvpn c --p2p -pkill -RTMIN+7 dwmblocks diff --git a/scripts/vpnd b/scripts/vpnd deleted file mode 100755 index f26a909..0000000 --- a/scripts/vpnd +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -sudo protonvpn d -pkill -RTMIN+7 dwmblocks diff --git a/scripts/xdwm b/scripts/xdwm deleted file mode 100755 index 37eb3bc..0000000 --- a/scripts/xdwm +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -# Execute dwm-xinitrc. - -startx $HOME/git/dotfiles/xinit/dwm-xinitrc - diff --git a/scripts/xferrwm b/scripts/xferrwm deleted file mode 100755 index 45c6409..0000000 --- a/scripts/xferrwm +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -startx $HOME/git/dotfiles/xinit/ferrwm-xinitrc diff --git a/scripts/xplasma b/scripts/xplasma deleted file mode 100644 index 5617eba..0000000 --- a/scripts/xplasma +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -startx $HOME/git/dotfiles/xinit/plasma-xinitrc - -- cgit v1.2.1