mirror of
https://github.com/gunchev/home_bin.git
synced 2025-11-20 12:15:46 +00:00
Added ~/.config/autostart-scripts/
Run ~/.config/autostart-scripts/run_all.sh to start them all.
This commit is contained in:
parent
2fb7ca7d33
commit
c001068b94
4 changed files with 19 additions and 0 deletions
3
.config/autostart-scripts/00-backlight.sh
Executable file
3
.config/autostart-scripts/00-backlight.sh
Executable file
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
xbacklight -set 1
|
||||||
5
.config/autostart-scripts/10-xbindkeys.sh
Executable file
5
.config/autostart-scripts/10-xbindkeys.sh
Executable file
|
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ "$DESKTOP_SESSION" == "lxqt" ]; then
|
||||||
|
/usr/bin/xbindkeys
|
||||||
|
fi
|
||||||
5
.config/autostart-scripts/99-ssh-add.sh
Executable file
5
.config/autostart-scripts/99-ssh-add.sh
Executable file
|
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ "$DESKTOP_SESSION" == "lxqt" ]; then
|
||||||
|
/usr/bin/ssh-add &
|
||||||
|
fi
|
||||||
6
.config/autostart-scripts/run_all.sh
Executable file
6
.config/autostart-scripts/run_all.sh
Executable file
|
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
for i in ~/.config/autostart-scripts/*.sh; do
|
||||||
|
if [ "${0/*\//}" == "${i/*\//}" ]; then continue; fi
|
||||||
|
"$i"
|
||||||
|
done
|
||||||
Loading…
Add table
Add a link
Reference in a new issue