scripts/doc/action_scripts.org

26 lines
471 B
Org Mode
Raw Normal View History

2020-05-26 08:32:38 +02:00
#+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