Created two new scripts for launching Chrome webapp windows.
parent
2c5b5cd2c3
commit
904cdd62a4
@ -0,0 +1,19 @@
|
||||
#!/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
|
@ -0,0 +1,24 @@
|
||||
#!/bin/bash
|
||||
## Start Chrome windows of logging services
|
||||
## Written May 18, 2018
|
||||
## Taha Ahmed
|
||||
|
||||
# https://www.linuxjournal.com/magazine/hack-and-automate-your-desktop-wmctrl
|
||||
|
||||
a="https://192.168.1.1:8443"
|
||||
b="https://graylog.asks.se"
|
||||
c="http://192.168.1.105/admin"
|
||||
d="https://deluge.chepec.se"
|
||||
e="https://trickle.deluge.chepec.se"
|
||||
f="https://status.asks.se/tls/all"
|
||||
|
||||
# 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 &
|
||||
google-chrome --new-window --app=$e &
|
||||
google-chrome --new-window --app=$f &
|
||||
|
||||
|
||||
exit 1
|
Loading…
Reference in New Issue