#!/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