summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorself <george@gabbott.dev>2023-01-05 16:53:16 +0000
committerself <george@gabbott.dev>2023-01-05 16:53:16 +0000
commit881108f51baee0652300325a1dd1e071e2866eed (patch)
tree31f795d183c0c50b5d1401a64da3ed53613e0581
parent0e29becfa37203f02fa8392bb3de61265b44ed1a (diff)
Removed scripts, as moved to orgd
-rw-r--r--scripts/backup-directory11
-rwxr-xr-xscripts/change-audio21
-rwxr-xr-xscripts/change-light4
-rwxr-xr-xscripts/powermenu9
-rwxr-xr-xscripts/vpnc4
-rwxr-xr-xscripts/vpnd4
-rwxr-xr-xscripts/xdwm5
-rwxr-xr-xscripts/xferrwm3
-rw-r--r--scripts/xplasma4
9 files changed, 0 insertions, 65 deletions
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
-