You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
472 B
Bash
20 lines
472 B
Bash
7 years ago
|
#!/bin/bash
|
||
|
## Start Chrome windows of services
|
||
|
## Written May 17, 2018
|
||
|
## Taha Ahmed
|
||
|
|
||
|
# https://www.linuxjournal.com/magazine/hack-and-automate-your-desktop-wmctrl
|
||
|
|
||
|
a="https://hypothes.is"
|
||
|
b="https://rememberthemilk.com"
|
||
|
c="https://wallabag.chepec.se"
|
||
|
d="https://keep.google.com"
|
||
|
|
||
|
# start Chrome as app windows
|
||
|
google-chrome --new-window --app=$a &
|
||
|
google-chrome --new-window --app=$b &
|
||
|
google-chrome --new-window --app=$c &
|
||
|
google-chrome --new-window --app=$d &
|
||
|
|
||
|
exit 1
|