Merge branch 'master' of github.com:LukeSmithxyz/voidrice
This commit is contained in:
commit
bfd7ef110c
4 changed files with 4 additions and 4 deletions
|
@ -6,7 +6,7 @@
|
||||||
# to clean up.
|
# to clean up.
|
||||||
|
|
||||||
# Adds `~/.local/bin` to $PATH
|
# Adds `~/.local/bin` to $PATH
|
||||||
export PATH="$PATH:$(du "$HOME/.local/bin" | cut -f2 | paste -sd ':')"
|
export PATH="$PATH:$(du "$HOME/.local/bin" | cut -f2 | paste -sd ':' -)"
|
||||||
|
|
||||||
unsetopt PROMPT_SP
|
unsetopt PROMPT_SP
|
||||||
|
|
||||||
|
|
|
@ -53,7 +53,7 @@ multimon() { # Multi-monitor handler.
|
||||||
esac ;}
|
esac ;}
|
||||||
|
|
||||||
onescreen() { # If only one output available or chosen.
|
onescreen() { # If only one output available or chosen.
|
||||||
xrandr --output "$1" --auto --scale 1.0x1.0 $(echo "$allposs" | grep -v "$1" | awk '{print "--output", $1, "--off"}' | paste -sd ' ')
|
xrandr --output "$1" --auto --scale 1.0x1.0 $(echo "$allposs" | grep -v "$1" | awk '{print "--output", $1, "--off"}' | paste -sd ' ' -)
|
||||||
}
|
}
|
||||||
|
|
||||||
postrun() { # Stuff to run to clean up.
|
postrun() { # Stuff to run to clean up.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
filter() { mpc | sed "/^volume:/d;s/\\&/&/g;s/\\[paused\\].*/⏸/g;/\\[playing\\].*/d" | paste -sd ' ';}
|
filter() { mpc | sed "/^volume:/d;s/\\&/&/g;s/\\[paused\\].*/⏸/g;/\\[playing\\].*/d" | paste -sd ' ' -;}
|
||||||
|
|
||||||
pidof -x mpdup >/dev/null 2>&1 || mpdup >/dev/null 2>&1 &
|
pidof -x mpdup >/dev/null 2>&1 || mpdup >/dev/null 2>&1 &
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ transmission-remote -l | grep % |
|
||||||
s/.*Idle.*/B 🕰️/;
|
s/.*Idle.*/B 🕰️/;
|
||||||
s/.*Uploading.*/L ⬆️/;
|
s/.*Uploading.*/L ⬆️/;
|
||||||
s/.*%.*/M ⬇️/" |
|
s/.*%.*/M ⬇️/" |
|
||||||
sort -h | uniq -c | awk '{print $3 $1}' | paste -sd ' '
|
sort -h | uniq -c | awk '{print $3 $1}' | paste -sd ' ' -
|
||||||
|
|
||||||
case $BLOCK_BUTTON in
|
case $BLOCK_BUTTON in
|
||||||
1) setsid -f "$TERMINAL" -e tremc ;;
|
1) setsid -f "$TERMINAL" -e tremc ;;
|
||||||
|
|
Loading…
Reference in a new issue