mirror of
https://github.com/brunofontes/linuxShortcuts.git
synced 2024-11-23 22:30:51 +00:00
feat(Browser): Include incognito window option
This commit is contained in:
parent
14901142b6
commit
ebc7031a3d
18
browser.sh
18
browser.sh
@ -1,7 +1,15 @@
|
||||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
activity=`kactivities-cli --current-activity | cut -d" " -f3`
|
||||
|
||||
[[ $activity == "OXO" ]] && /bin/brave "$1"
|
||||
[[ $activity == "Development" ]] && /home/bruno/Apps/firefox/firefox-bin "$1"
|
||||
[[ $activity == "Main" ]] && /bin/firefox "$1"
|
||||
[[ $activity == "Videos" ]] && /bin/firefox "$1"
|
||||
if [[ $1 =~ .*\&incognitottt$ ]]; then
|
||||
url="${1/\&incognitottt/}"
|
||||
[[ $activity == "OXO" ]] && /bin/brave --incognito "$url" 2>%1 1>/dev/null &
|
||||
[[ $activity == "Development" ]] && /home/bruno/Apps/firefox/firefox-bin --private-window "$url" 2>%1 1>/dev/null &
|
||||
[[ $activity == "Main" ]] && /bin/firefox --private-window "$url" 2>%1 1>/dev/null &
|
||||
[[ $activity == "Videos" ]] && /bin/firefox --private-window "$url" 2>%1 1>/dev/null &
|
||||
else
|
||||
[[ $activity == "OXO" ]] && /bin/brave "$1" 2>%1 1>/dev/null &
|
||||
[[ $activity == "Development" ]] && /home/bruno/Apps/firefox/firefox-bin "$1" 2>%1 1>/dev/null &
|
||||
[[ $activity == "Main" ]] && /bin/firefox "$1" 2>%1 1>/dev/null &
|
||||
[[ $activity == "Videos" ]] && /bin/firefox "$1" 2>%1 1>/dev/null &
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user