about summary refs log tree commit diff
path: root/emacs/.emacs.d/wpc/pulse-audio.el
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-08-31T16·05+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-08-31T16·08+0100
commitff8277625f43c1354b63333090f72c277c1f43f8 (patch)
tree901594d4fee2031477ae7821f5bc9ef40474232a /emacs/.emacs.d/wpc/pulse-audio.el
parent5d3bb0b7eadc9efc423eb7ef8857fa6df256d254 (diff)
Lint prelude.el
This was a doozey because I use it everywhere. Is there a better way to globally
rename things? Aye aye aye... computers, man!
Diffstat (limited to 'emacs/.emacs.d/wpc/pulse-audio.el')
-rw-r--r--emacs/.emacs.d/wpc/pulse-audio.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/emacs/.emacs.d/wpc/pulse-audio.el b/emacs/.emacs.d/wpc/pulse-audio.el
index f12e7922a549..34f4ab21767c 100644
--- a/emacs/.emacs.d/wpc/pulse-audio.el
+++ b/emacs/.emacs.d/wpc/pulse-audio.el
@@ -35,7 +35,7 @@
 (defun pulse-audio-toggle-mute ()
   "Mute the default sink."
   (interactive)
-  (prelude/start-process
+  (prelude-start-process
    :name "pulse-audio-toggle-mute"
    :command "pactl set-sink-mute @DEFAULT_SINK@ toggle")
   (pulse-audio--message "Mute toggled."))
@@ -43,7 +43,7 @@
 (defun pulse-audio-toggle-microphone ()
   "Mute the default sink."
   (interactive)
-  (prelude/start-process
+  (prelude-start-process
    :name "pulse-audio-toggle-microphone"
    :command "pactl set-source-mute @DEFAULT_SOURCE@ toggle")
   (pulse-audio--message "Microphone toggled."))
@@ -51,7 +51,7 @@
 (defun pulse-audio-decrease-volume ()
   "Low the volume output of the default sink."
   (interactive)
-  (prelude/start-process
+  (prelude-start-process
    :name "pulse-audio-decrease-volume"
    :command (string/format "pactl set-sink-volume @DEFAULT_SINK@ -%s%%"
                            pulse-audio--step-size))
@@ -60,7 +60,7 @@
 (defun pulse-audio-increase-volume ()
   "Raise the volume output of the default sink."
   (interactive)
-  (prelude/start-process
+  (prelude-start-process
    :name "pulse-audio-increase-volume"
    :command (string/format "pactl set-sink-volume @DEFAULT_SINK@ +%s%%"
                            pulse-audio--step-size))