Add files via upload
This commit is contained in:
parent
a9e497564b
commit
0794a77f17
3 changed files with 7 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
#!/usr/bin/bash
|
||||
# This script will open a little menu with different options
|
||||
# Dependencies: Sway, Bemenu, Unicode, systemd
|
||||
# Dependencies: Bemenu, emoji-font, systemd
|
||||
|
||||
screenshot () {
|
||||
case "$(echo -e "🖧 ...von allen Bildschirmen
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
#!/usr/bin/bash
|
||||
# This script will take a screenshot
|
||||
# Dependencies: sway, grim, slurp, gnu-utils
|
||||
# Dependencies: sway, grim, slurp
|
||||
|
||||
FILENAME="$HOME/screenshot-$(date +'%Y-%m-%d-%H%M%S.png')"
|
||||
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
#!/usr/bin/env bash
|
||||
#!/usr/bin/bash
|
||||
# This script will toggle gammastep
|
||||
# Dependencies: sway, gammastep, gnu-utils
|
||||
# Dependencies: gammastep
|
||||
|
||||
PID="$(ps -e | grep gammastep | awk -F ' ' '{print $1}')"
|
||||
|
||||
if [[ $PID > 0 ]]; then
|
||||
kill $PID
|
||||
else
|
||||
swaymsg exec "gammastep-indicator -c .config/sway/gammastep.ini"
|
||||
gammastep-indicator -c .config/sway/gammastep.ini
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
|
Loading…
Reference in a new issue