mirror of
https://github.com/Mastermindzh/dotfiles.git
synced 2024-11-22 06:44:41 +01:00
16 lines
296 B
Bash
16 lines
296 B
Bash
#!/bin/bash
|
|
|
|
# start Google Drive client
|
|
insync start
|
|
|
|
# Wait for the programs to start then remove attention (e.g red blinking)
|
|
sleep 1
|
|
wmctrl -r "Enpass" -b remove,demands_attention
|
|
|
|
|
|
# Start gkraken if the command exists
|
|
if command -v gkraken &> /dev/null
|
|
then
|
|
gkraken --hide-window &
|
|
fi
|