Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ant.sr
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anton Sarukhanov
ant.sr
Commits
7709f8a8
Commit
7709f8a8
authored
5 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
Add lockmute post
parent
366777b0
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
content/System Administration/gnome-mute-when-locked.md
+72
-0
72 additions, 0 deletions
content/System Administration/gnome-mute-when-locked.md
content/media/lockmute-250.png
+0
-0
0 additions, 0 deletions
content/media/lockmute-250.png
with
72 additions
and
0 deletions
content/System Administration/gnome-mute-when-locked.md
0 → 100644
+
72
−
0
View file @
7709f8a8
Title: Mute speakers when locking your PC
Description: Automatically mute audio output when your computer is locked.
Date: November 1, 2019
<center>

</center>
Are your coworkers/cohabitants tired of hearing notifications and other noises from your unattended computer?
Use this script to automatically mute your speakers whenever the machine is locked, and un-mute when you return.
*
Tested with
**GNOME 3.30**
on
**Debian 10**
.
*
Mutes when locking, un-mutes when unlocking.
*
*Does not*
un-mute if mute was enabled prior to locking the screen.
### How it works
*
Watches
`org.freedesktop.login1`
for
`LockedHint`
events via
`gdbus monitor`
.
*
Uses
`amixer`
(
[
ALSA
](
https://www.alsa-project.org/wiki/Main_Page
)
) to mute/unmute.
```
bash
#!/bin/bash
# lockmute.sh - Mute sound output while GNOME is locked.
STATE_FILE
=
~/.lockmute_state
gdbus monitor
-y
-d
org.freedesktop.login1 |
while
read
-r
DBUS_OUTPUT
;
do
LOCK_STATE
=
$(
echo
"
$DBUS_OUTPUT
"
|
grep
-o
"'LockedHint': <
\w
*>"
|
awk
'{print $2}'
)
if
[[
"
$LOCK_STATE
"
==
"<true>"
]]
;
then
AUDIO_STATE
=
$(
amixer get Master |
grep
-o
'\[\(on\|off\)\]'
)
if
[[
"
$AUDIO_STATE
"
==
*
"[off]"
*
]]
;
then
echo
"WAS_MUTED"
>
"
$STATE_FILE
"
else
echo
"WAS_NOT_MUTED"
>
"
$STATE_FILE
"
fi
amixer
set
Master mute
>
/dev/null
elif
[[
"
$LOCK_STATE
"
==
"<false>"
]]
;
then
if
[[
"
$(
cat
"
$STATE_FILE
"
)
"
==
"WAS_NOT_MUTED"
]]
;
then
amixer
set
Master unmute
>
/dev/null
fi
rm
"
$STATE_FILE
"
fi
done
```
## Installation
1.
Save to
`/usr/local/bin/lockmute.sh`
.
2.
Make it executable:
`chmod +x /usr/local/bin/lockmute.sh`
.
## Test it
You can test it by running
`lockmute.sh`
in a terminal. Play some music, and lock the screen (
`Super`
+
`L`
).
## Run it automatically
To run this anytime you're logged in, create an
[
autostart
](
https://developer.gnome.org/autostart-spec/
)
entry.
### ```~/.config/autostart/lockmute.desktop ```
```
[Desktop Entry]
Name=lockmute
Exec=/usr/local/bin/lockmute.sh
Type=Application
NoDisplay=true
X-GNOME-Autostart-enabled=true
```
This diff is collapsed.
Click to expand it.
content/media/lockmute-250.png
0 → 100644
+
0
−
0
View file @
7709f8a8
6.31 KiB
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment