-
Notifications
You must be signed in to change notification settings - Fork 3
/
lock_screen_turn_off_JBs.sh
executable file
·46 lines (42 loc) · 1.5 KB
/
lock_screen_turn_off_JBs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/bash
#
# Autor= João Batista Ribeiro
# Bugs, Agradecimentos, Críticas "construtivas"
# me envie um e-mail. Ficarei Grato!
# e-mail: joao42lbatista@gmail.com
#
# Este programa é um software livre; você pode redistribui-lo e/ou
# modifica-lo dentro dos termos da Licença Pública Geral GNU como
# publicada pela Fundação do Software Livre (FSF); na versão 2 da
# Licença, ou (na sua opinião) qualquer versão.
#
# Este programa é distribuído na esperança que possa ser útil,
# mas SEM NENHUMA GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a
# qualquer MERCADO ou APLICAÇÃO EM PARTICULAR.
#
# Veja a Licença Pública Geral GNU para mais detalhes.
# Você deve ter recebido uma cópia da Licença Pública Geral GNU
# junto com este programa, se não, escreva para a Fundação do Software
#
# Livre(FSF) Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# Script: in the KDE and XFCE, lock the session and turnoff the screen
#
# Last update: 19/06/2023
#
# Tip: Add a shortcut to this script
#
amixer set Master mute # Mute
xbacklight -set 1 # Set brightness to 1%
desktopGUI=$XDG_CURRENT_DESKTOP
desktopGUI=${desktopGUI,,} # Convert to lower case
if [ "$desktopGUI" == "xfce" ]; then
xflock4 # Lock the session in the XFCE
elif [ "$desktopGUI" == "kde" ]; then
qdbus org.freedesktop.ScreenSaver /ScreenSaver Lock # Lock the session in the KDE
else
echo -e "\nError: The variable \"\$desktopGUI\" is not set.\n"
exit 1
fi
sleep 2s
xset dpms force off # Turn off the screen