mirror of
https://github.com/brunofontes/linuxShortcuts.git
synced 2024-11-24 02:01:08 +00:00
8 lines
291 B
Bash
8 lines
291 B
Bash
|
#!/bin/sh
|
||
|
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"
|