An open API service indexing awesome lists of open source software.

https://github.com/alharari01/Linux-application-startup-script-

this is a simple script to start applications after you boot into linux. you might have your own setup enviroment for coding and after you turn on the computer you want to start every application in a specifed way automatically.
https://github.com/alharari01/Linux-application-startup-script-

application-startup bash-script debian linux script session-manager

Last synced: 6 months ago
JSON representation

this is a simple script to start applications after you boot into linux. you might have your own setup enviroment for coding and after you turn on the computer you want to start every application in a specifed way automatically.

Awesome Lists containing this project

README

          

# Linux application starter / Session saver
this is a simple script to start applications after you boot into linux.

you might have your own setup enviroment for coding and after you turn on the computer you want to start every application in a specifed way automatically.

you also use it if you don't have a session manager that can save your last opened applications.

it starts your specifc applications, and moves them into a workspace of your choosing.

## Screenshots

![App Screenshot](https://i.postimg.cc/3R4FByqK/2025-02-22-13-19.png)

## Demo

```
(okular &) & sleep 5 &&
sh -c "wmctrl -i -r `wmctrl -l | grep Okular` -t 2"
```

***okular***: name of appicaltion

***sleep***: use it if you have multiple apps and you don't want to open them together, 5 seconds to wait for the next app.

***-t 2***: change the number for your specifc workspace.

***for flatpak apps***
now if you want to run flatpak apps use this example:

```
(flatpak run com.github.johnfactotum.Foliate &) & sleep 5 &&
sh -c "wmctrl -i -r `wmctrl -l | grep Foliate` -t 2"
```
## Download script

- [startup.sh](https://github.com/abduumad/Linux-application-startup-script-/blob/main/startup.sh)

## 🔗 Links
[![twitter](https://img.shields.io/badge/twitter-1DA1F2?style=for-the-badge&logo=twitter&logoColor=white)](https://x.com/abdupdf)