summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/brighter4
-rwxr-xr-xbin/darker7
-rwxr-xr-xbin/fehbg3
-rwxr-xr-xbin/fs2
-rwxr-xr-xbin/mute4
-rwxr-xr-xbin/picom_run3
-rwxr-xr-xbin/rs4
-rwxr-xr-xbin/sarc_compile43
-rwxr-xr-xbin/sarc_install25
-rwxr-xr-xbin/surf_run3
-rwxr-xr-xbin/update-grub3
-rwxr-xr-xbin/vol_down4
-rwxr-xr-xbin/vol_up5
13 files changed, 0 insertions, 110 deletions
diff --git a/bin/brighter b/bin/brighter
deleted file mode 100755
index b495a84..0000000
--- a/bin/brighter
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-
-
-sudo light -A 6
diff --git a/bin/darker b/bin/darker
deleted file mode 100755
index f7530e7..0000000
--- a/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/bin/fehbg b/bin/fehbg
deleted file mode 100755
index 71860f0..0000000
--- a/bin/fehbg
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-feh --bg-fill /etc/wallpaper.jpg
diff --git a/bin/fs b/bin/fs
deleted file mode 100755
index 4790a90..0000000
--- a/bin/fs
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-du -h $@
diff --git a/bin/mute b/bin/mute
deleted file mode 100755
index 7941e5d..0000000
--- a/bin/mute
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-
-pactl set-sink-mute @DEFAULT_SINK@ toggle &
-dunstify "Toggled mute" &
diff --git a/bin/picom_run b/bin/picom_run
deleted file mode 100755
index e2fb4d7..0000000
--- a/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/bin/rs b/bin/rs
deleted file mode 100755
index f8f1468..0000000
--- a/bin/rs
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-# A script to start sarc
-sx dwm
-# That's it
diff --git a/bin/sarc_compile b/bin/sarc_compile
deleted file mode 100755
index ebbc0f0..0000000
--- a/bin/sarc_compile
+++ /dev/null
@@ -1,43 +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 clean
-make -s
-
-cd ../st-0.8.4
-make clean
-make -s
-
-cd ../$dmenu
-make clean
-make -s
-
-cd ..
-
-cp etc/wallpaper/$theme.wallpaper.jpg ./wallpaper.jpg
-echo "Compilation is complete! Run sarc_install to install it"
diff --git a/bin/sarc_install b/bin/sarc_install
deleted file mode 100755
index 7c2ec3e..0000000
--- a/bin/sarc_install
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-# A script that installs sarc. Run this as root
-
-dwm="dwm-6.2"
-dmenu="dmenu-5.0"
-st="st"
-
-cd $dwm
-make install
-
-cd ../$dmenu
-make install
-
-cd ../st-0.8.4
-make install
-
-cd ../dwmblocks
-make install
-
-cd ..
-cp bin/* /usr/local/bin
-cp wallpaper.jpg /etc/wallpaper.jpg
-
-rm theme.h
-rm wallpaper.jpg
diff --git a/bin/surf_run b/bin/surf_run
deleted file mode 100755
index 29c7b02..0000000
--- a/bin/surf_run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-tabbed surf -e
diff --git a/bin/update-grub b/bin/update-grub
deleted file mode 100755
index 0c43327..0000000
--- a/bin/update-grub
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-set -e
-exec grub-mkconfig -o /boot/grub/grub.cfg "$@"
diff --git a/bin/vol_down b/bin/vol_down
deleted file mode 100755
index 9a01c42..0000000
--- a/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/bin/vol_up b/bin/vol_up
deleted file mode 100755
index 5107cd5..0000000
--- a/bin/vol_up
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-
-pactl set-sink-volume @DEFAULT_SINK@ +5% &
-dunstify "Turned the volume up +5" &
-