mirror of
https://github.com/Qubes-Community/Contents.git
synced 2024-12-23 14:19:24 -05:00
16 lines
203 B
Plaintext
16 lines
203 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
|
||
|
mkdir -p /etc/xdg/autostart/bkp
|
||
|
|
||
|
IFS="
|
||
|
"
|
||
|
|
||
|
for i in $(find /etc/xdg/autostart/ -maxdepth 1 -mindepth 1 ! -type d ! -name '0*.desktop'); do
|
||
|
cp -au "$i" /etc/xdg/autostart/bkp
|
||
|
rm "$i"
|
||
|
done
|
||
|
|
||
|
|
||
|
|