Add screen-off and incognito

This commit is contained in:
Arkaprabha Chakraborty
2023-11-14 19:27:20 +05:30
parent ef981e7977
commit 3d8a904983
2 changed files with 28 additions and 0 deletions

14
incognito Executable file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/sh
# Script: incognito (0.0.1-alpha)
# License: MIT
# Author: Arkaprabha Chakraborty
# Created: 13-11-23
# Dependencies: librewolf
#
# Copyright (C) 2023 Arkaprabha Chakraborty
PROG=librewolf
FLAGS=--private-window
exec $PROG $FLAG

14
screen-off Executable file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/sh
# Script: screen-off (0.0.1-alpha)
# License: MIT
# Author: Arkaprabha Chakraborty
# Created: 13-11-23
# Dependencies: xset
#
# Copyright (C) 2023 Arkaprabha Chakraborty
PROG=xset
FLAGS='dpms force off'
$PROG $FLAGS