scripts do not need bash.

auto-flake-update
Yorick van Pelt 2015-03-18 15:54:42 +01:00
parent 13d0330e1a
commit 412af1ce38
5 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
# brightne.sh
# changes my backlight brightness, for use with nvidiabl

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
(
yeganesh -x -- -fn "-*-termsyn-medium-*-*-*-12-*-*-*-*-*-*-*" -p "run: " -i -f -nb "#1D1E24" -nf "#8DA893" -sb "#1D1E24" -sf "#C18E44" $@
) | ${SHELL:-"/bin/sh"} &

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
# Credit to Roland Latour
# http://www.freak-search.com/en/thread/4707111/q_volume_control,_xfce

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
# lower volume by 1%
volume=$(amixer set Master playback 1%- | grep "t: Playback" | sed '{s/://}' | awk '{print $5}' | head -n 1 | cut -c2- | rev | cut -c3- | rev)

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
# Raise volume by 1%
volume=$(amixer set Master playback 1%+ | grep "t: Playback" | sed '{s/://}' | awk '{print $5}' | head -n 1 | cut -c2- | rev | cut -c3- | rev)