diff options
author | Patrick Spek <p.spek@tyil.nl> | 2023-03-14 10:06:46 +0100 |
---|---|---|
committer | Patrick Spek <p.spek@tyil.nl> | 2023-03-14 10:06:46 +0100 |
commit | 0cd9c6a2d03a01e6703d2aa896e8f722ecb9d7a7 (patch) | |
tree | f0d84521c415a98fe115821e27148ab6a9d9ab40 | |
parent | 77e35708f72806ffb8eed2b194392ecc6905f2c9 (diff) | |
download | dotfiles-0cd9c6a2d03a01e6703d2aa896e8f722ecb9d7a7.tar.gz dotfiles-0cd9c6a2d03a01e6703d2aa896e8f722ecb9d7a7.tar.bz2 |
Add url for awsapps to open
-rwxr-xr-x | .local/bin/open | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.local/bin/open b/.local/bin/open index 584c430..9877708 100755 --- a/.local/bin/open +++ b/.local/bin/open @@ -61,6 +61,7 @@ multi sub cmd (HttpUrl $t where { $_.hostname.ends-with('gitlab.com') && $_.path multi sub cmd (HttpUrl $t where { $_.hostname.ends-with('gitlab.com') && $_.path[0].?fc eq 'xxllnc' }) { "chromium '$t'" } multi sub cmd (HttpUrl $t where *.hostname.ends-with('atlassian.net')) { "chromium '$t'" } multi sub cmd (HttpUrl $t where *.hostname.ends-with('aws.amazon.com')) { "chromium '$t'" } +multi sub cmd (HttpUrl $t where *.hostname.ends-with('awsapps.com')) { "chromium '$t'" } multi sub cmd (HttpUrl $t where *.hostname.ends-with('google.com')) { "chromium '$t'" } multi sub cmd (HttpUrl $t where *.hostname.ends-with('slack.com')) { "chromium '$t'" } multi sub cmd (HttpUrl $t where *.hostname.ends-with('zaaksysteem.net')) { "chromium '$t'" } |