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!
This commit is contained in:
parent
5d3bb0b7ea
commit
ff8277625f
29 changed files with 163 additions and 164 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue