mango: Move startup app into a script
This commit is contained in:
parent
78f1691de2
commit
3e357991df
2 changed files with 29 additions and 8 deletions
28
mango/autostart.sh
Executable file
28
mango/autostart.sh
Executable file
|
|
@ -0,0 +1,28 @@
|
|||
#!/bin/bash
|
||||
|
||||
set +e
|
||||
|
||||
# pipewire
|
||||
gentoo-pipewire-launcher restart >/dev/null 2>&1 &
|
||||
|
||||
# ssh agent
|
||||
ssh-agent -a /run/user/1000/ssh-agent.socket >/dev/null 2>&1 &
|
||||
|
||||
# kdeconnectd
|
||||
kdeconnectd >/dev/null 2>&1 &
|
||||
|
||||
# password
|
||||
/usr/lib/polkit-kde-authentication-agent-1 >/dev/null 2>&1 &
|
||||
|
||||
# portal
|
||||
/usr/lib/xdg-desktop-portal-wlr >/dev/null 2>&1 &
|
||||
|
||||
# clipboard content manager
|
||||
wl-paste --type text --watch cliphist store >/dev/null 2>&1 &
|
||||
|
||||
discord --start-minimized >/dev/null 2>&1 &
|
||||
# Noctalia
|
||||
# qs -c noctalia-shell &
|
||||
|
||||
# dankshell
|
||||
dms run &
|
||||
|
|
@ -289,14 +289,7 @@ source=./dms/cursor.conf
|
|||
|
||||
# autostart your favorite applications here
|
||||
|
||||
exec-once = sleep 1 && gentoo-pipewire-launcher &
|
||||
exec-once = kdeconnectd
|
||||
# exec-once = qs -c noctalia-shell
|
||||
exec-once = dms run
|
||||
exec-once = bash -c wl-paste --watch cliphist store & # optional: clipboard history | cliphist is needed
|
||||
exec-once = ssh-agent -a /run/user/1000/ssh-agent.socket &
|
||||
exec-once = /usr/lib/xdg-desktop-portal-wlr &
|
||||
exec-once = discord --start-minimized &
|
||||
exec-once=~/.config/mango/autostart.sh
|
||||
|
||||
source=./dms/cursor.conf
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue