diff options
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/brighter | 4 | ||||
| -rwxr-xr-x | bin/darker | 7 | ||||
| -rwxr-xr-x | bin/fehbg | 3 | ||||
| -rwxr-xr-x | bin/fs | 2 | ||||
| -rwxr-xr-x | bin/mute | 4 | ||||
| -rwxr-xr-x | bin/picom_run | 3 | ||||
| -rwxr-xr-x | bin/rs | 4 | ||||
| -rwxr-xr-x | bin/sarc_compile | 43 | ||||
| -rwxr-xr-x | bin/sarc_install | 25 | ||||
| -rwxr-xr-x | bin/surf_run | 3 | ||||
| -rwxr-xr-x | bin/update-grub | 3 | ||||
| -rwxr-xr-x | bin/vol_down | 4 | ||||
| -rwxr-xr-x | bin/vol_up | 5 |
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 @@ -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 @@ -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" & - |