mirror of
https://github.com/Qubes-Community/Contents.git
synced 2024-10-01 01:05:51 -04:00
16 lines
203 B
Bash
Executable File
16 lines
203 B
Bash
Executable File
#!/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
|
|
|
|
|
|
|