mirror of
https://github.com/brunofontes/linuxShortcuts.git
synced 2024-11-24 00:50:51 +00:00
8 lines
291 B
Bash
Executable File
8 lines
291 B
Bash
Executable File
#!/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"
|