summaryrefslogtreecommitdiff
path: root/sd/bin
diff options
context:
space:
mode:
Diffstat (limited to 'sd/bin')
-rwxr-xr-xsd/bin/brighter4
-rwxr-xr-xsd/bin/darker7
-rwxr-xr-xsd/bin/fehbg3
-rwxr-xr-xsd/bin/mute4
-rwxr-xr-xsd/bin/ns39
-rwxr-xr-xsd/bin/picom_run3
-rwxr-xr-xsd/bin/sarc_compile41
-rwxr-xr-xsd/bin/sarc_install30
-rwxr-xr-xsd/bin/sarc_pkgbuild30
-rwxr-xr-xsd/bin/ss4
-rwxr-xr-xsd/bin/surf_run3
-rwxr-xr-xsd/bin/update-grub3
-rwxr-xr-xsd/bin/vol_down4
-rwxr-xr-xsd/bin/vol_up5
14 files changed, 0 insertions, 180 deletions
diff --git a/sd/bin/brighter b/sd/bin/brighter
deleted file mode 100755
index b495a84..0000000
--- a/sd/bin/brighter
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-
-
-sudo light -A 6
diff --git a/sd/bin/darker b/sd/bin/darker
deleted file mode 100755
index f7530e7..0000000
--- a/sd/bin/darker
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/sh
-
-#
-# A script that lowers and ups the brightness
-#
-
-sudo light -U 6
diff --git a/sd/bin/fehbg b/sd/bin/fehbg
deleted file mode 100755
index 71860f0..0000000
--- a/sd/bin/fehbg
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-feh --bg-fill /etc/wallpaper.jpg
diff --git a/sd/bin/mute b/sd/bin/mute
deleted file mode 100755
index 7941e5d..0000000
--- a/sd/bin/mute
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-
-pactl set-sink-mute @DEFAULT_SINK@ toggle &
-dunstify "Toggled mute" &
diff --git a/sd/bin/ns b/sd/bin/ns
deleted file mode 100755
index 5755699..0000000
--- a/sd/bin/ns
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/usr/bin/bash
-# ns - A script that starts wifi
-# Uses wpa_supplicant & dhcpcd
-# Made wpa_supplicant & dhcpcd silent
-
-source /etc/ns.conf
-
-case $1 in
-
- -k)
-
- killall wpa_supplicant
- killall dhcpcd
-
- ;;
- -r)
- killall wpa_supplicant
- killall dhcpcd
-
- wpa_supplicant -c $CONFIG -B -i $INTERFACE
- dhcpcd $INTERFACE
- echo "Done"
-
- ;;
- -s)
- wpa_supplicant -s -c $CONFIG -B -i $INTERFACE &
- dhcpcd -q $INTERFACE &
-
- ;;
- *)
- echo "ns"
- echo
- echo " -s: Starts the wifi"
- echo " -r: Restarts wpa_supplicant and dhcpcd"
- echo " -k: Kills the network"
- echo
- ;;
-esac
-
diff --git a/sd/bin/picom_run b/sd/bin/picom_run
deleted file mode 100755
index e2fb4d7..0000000
--- a/sd/bin/picom_run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-# This script will have more options later on
-picom --experimental-backends
diff --git a/sd/bin/sarc_compile b/sd/bin/sarc_compile
deleted file mode 100755
index 5c1a541..0000000
--- a/sd/bin/sarc_compile
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/sh
-# A script to compile sarc
-
-dwm="dwm-6.2"
-st="st"
-dmenu="dmenu-5.0"
-
-echo "Welcome to the sarc installation!"
-echo
-
-echo "What theme do you want to use?"
-echo
-ls themes/
-echo
-echo "Enter what theme you would like to use:" && read theme
-echo
-echo "Theme is $theme"
-echo
-echo $theme >> /tmp/theme
-pwd
-
-cp themes/$theme theme.h
-
-cd $dwm
-make clean
-make -s
-
-cd ../dwmblocks
-make -s
-
-cd ../$st
-make clean
-make -s
-
-cd ../$dmenu
-make -s
-
-cd ..
-
-rm theme.h
-echo "Compilation is complete! Run sarc_install to install it"
diff --git a/sd/bin/sarc_install b/sd/bin/sarc_install
deleted file mode 100755
index 07e1ec3..0000000
--- a/sd/bin/sarc_install
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-# A script that installs sarc. Run this as root
-
-dwm="dwm-6.2"
-dmenu="dmenu-5.0"
-st="st"
-
-echo "What theme did you choose?"
-echo
-ls themes/ && read theme
-pwd
-echo
-echo $theme
-
-cd $dwm
-make install
-
-cd ../$dmenu
-make install
-
-cd ../$st
-make install
-
-cd ../dwmblocks
-make install
-
-cd ..
-cp bin/* /usr/local/bin
-cp etc/wallpaper/$theme.wallpaper.jpg /etc/wallpaper.jpg
-rm /tmp/theme
diff --git a/sd/bin/sarc_pkgbuild b/sd/bin/sarc_pkgbuild
deleted file mode 100755
index 07e1ec3..0000000
--- a/sd/bin/sarc_pkgbuild
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-# A script that installs sarc. Run this as root
-
-dwm="dwm-6.2"
-dmenu="dmenu-5.0"
-st="st"
-
-echo "What theme did you choose?"
-echo
-ls themes/ && read theme
-pwd
-echo
-echo $theme
-
-cd $dwm
-make install
-
-cd ../$dmenu
-make install
-
-cd ../$st
-make install
-
-cd ../dwmblocks
-make install
-
-cd ..
-cp bin/* /usr/local/bin
-cp etc/wallpaper/$theme.wallpaper.jpg /etc/wallpaper.jpg
-rm /tmp/theme
diff --git a/sd/bin/ss b/sd/bin/ss
deleted file mode 100755
index f8f1468..0000000
--- a/sd/bin/ss
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-# A script to start sarc
-sx dwm
-# That's it
diff --git a/sd/bin/surf_run b/sd/bin/surf_run
deleted file mode 100755
index 29c7b02..0000000
--- a/sd/bin/surf_run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-tabbed surf -e
diff --git a/sd/bin/update-grub b/sd/bin/update-grub
deleted file mode 100755
index 0c43327..0000000
--- a/sd/bin/update-grub
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-set -e
-exec grub-mkconfig -o /boot/grub/grub.cfg "$@"
diff --git a/sd/bin/vol_down b/sd/bin/vol_down
deleted file mode 100755
index 9a01c42..0000000
--- a/sd/bin/vol_down
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-
-pactl set-sink-volume @DEFAULT_SINK@ -5% &
-dunstify "Turned the volume down 5%"
diff --git a/sd/bin/vol_up b/sd/bin/vol_up
deleted file mode 100755
index 5107cd5..0000000
--- a/sd/bin/vol_up
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-
-pactl set-sink-volume @DEFAULT_SINK@ +5% &
-dunstify "Turned the volume up +5" &
-