dotfiles/.config/qtile-wayland/autostart.sh

35 lines
786 B
Bash
Raw Normal View History

2022-04-30 12:49:30 +02:00
#!/bin/sh
# Autostart script for Qtile
cmd_exist() { unalias "$1" >/dev/null 2>&1 ; command -v "$1" >/dev/null 2>&1 ;}
__kill() { kill -9 "$(pidof "$1")" >/dev/null 2>&1 ; }
__start() { sleep 1 && "$@" >/dev/null 2>&1 & }
__running() { pidof "$1" >/dev/null 2>&1 ;}
systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
# Authentication dialog
if [ -f /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 ]; then
2022-04-30 20:33:28 +02:00
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
2022-04-30 12:49:30 +02:00
fi
# Notification daemon
2022-04-30 20:33:28 +02:00
#dunst &
2022-04-30 12:49:30 +02:00
2022-04-30 20:33:28 +02:00
# Network applet
#connman-gtk --tray &
nm-applet
# Applet for Audio
pnmixer -t &
# Configure screens and resolution
~/.config/qtile/startwlrrandr.sh &
# Configure screensaver
~/.config/qtile/startwlrscreensaver.sh &
# Clipboard (Diodon)
diodon &
2022-04-30 12:49:30 +02:00