diff options
author | NeodarZ <neodarz@neodarz.ovh> | 2016-11-03 23:32:29 +0100 |
---|---|---|
committer | NeodarZ <neodarz@neodarz.ovh> | 2016-11-03 23:32:29 +0100 |
commit | 85869af083741e8230cf66d1acc4a3b2da21dbd5 (patch) | |
tree | f84efd1622d327039e0c0876a39b948469c42388 /i3/blocks/microphone | |
parent | 146b416466cda8fdb6151bf73f99fa65a483fc09 (diff) | |
download | dotfiles-85869af083741e8230cf66d1acc4a3b2da21dbd5.tar.xz dotfiles-85869af083741e8230cf66d1acc4a3b2da21dbd5.zip |
Add the new i3 configuration
Diffstat (limited to 'i3/blocks/microphone')
-rwxr-xr-x | i3/blocks/microphone | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/i3/blocks/microphone b/i3/blocks/microphone deleted file mode 100755 index 76ff3f9..0000000 --- a/i3/blocks/microphone +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -# Left click -if [[ "${BLOCK_BUTTON}" -eq 1 ]]; then - amixer -q sset Capture 5%+ -# Middle click -elif [[ "${BLOCK_BUTTON}" -eq 2 ]]; then - amixer -q sset Capture toggle -# Right click -elif [[ "${BLOCK_BUTTON}" -eq 3 ]]; then - amixer -q sset Capture 5%- -fi - -statusLine=$(amixer get Capture | tail -n 1) -status=$(echo "${statusLine}" | grep -wo "on") -volume=$(echo "${statusLine}" | awk -F ' ' '{print $5}' | tr -d '[]%') - -if [[ "${status}" == "on" ]]; then - echo "${volume}%" - echo "${volume}%" - echo "" -else - echo "off" - echo "off" - echo "" -fi
\ No newline at end of file |