This commit is contained in:
sevi-kun 2020-05-26 08:32:38 +02:00
parent 09a818598a
commit a65c9aa953
1 changed files with 25 additions and 0 deletions

25
doc/action_scripts.org Normal file
View File

@ -0,0 +1,25 @@
#+TITLE: Documentation for scripts
#+DESCRIPTION: Documentation for scripts in ~/Files/scripts
#+AUTHOR: Béla Richartz
* Action scripts
** toggle_mic.sh
*** Scriptblock
#+BEGIN_SRC sh
#!/bin/bash
pulsemixer --id source-1 --toggle-mute
mic_state=$(pulsemixer --id source-1 --get-mute)
if [ "$mic_state" == "0" ]
then
notify-send "Mic is now unmuted"
else
notify-send "Mic is now muted"
fi
#+END_SRC
** toggle_mute.sh
*** Scriptblock
#+BEGIN_SRC sh
::w q
#+END_SRC