initial
This commit is contained in:
15
.config/awesome/scripts/logout_script.sh
Executable file
15
.config/awesome/scripts/logout_script.sh
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# a simple dmenu session script
|
||||
#
|
||||
###
|
||||
|
||||
DMENU='dmenu -i'
|
||||
choice=$(echo -e "logout\nshutdown\nreboot\nsuspend\nhibernate" | $DMENU)
|
||||
|
||||
case "$choice" in
|
||||
shutdown) shutdown -h now & ;;
|
||||
reboot) shutdown -r now & ;;
|
||||
suspend) systemctl suspend & ;;
|
||||
hibernate) systemctl hibernate & ;;
|
||||
esac
|
||||
5
.config/awesome/scripts/toggle_picom.sh
Executable file
5
.config/awesome/scripts/toggle_picom.sh
Executable file
@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
pgrep picom>/dev/null &&
|
||||
killall picom &>/dev/null ||
|
||||
setsid picom --config ~/.config/picom/picom.conf & >/dev/null
|
||||
Reference in New Issue
Block a user