14 lines
116 B
Bash
14 lines
116 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Open qbittorrent
|
||
|
qbittorrent &
|
||
|
|
||
|
# Open vesktop
|
||
|
vesktop &
|
||
|
|
||
|
# Open steam
|
||
|
steam &
|
||
|
|
||
|
# Open firefox
|
||
|
firefox
|