Skip to content

Commit

Permalink
shellsevents: support windowtitle event
Browse files Browse the repository at this point in the history
  • Loading branch information
andresilva authored and fufexan committed Nov 5, 2023
1 parent 5bfe300 commit e2cb355
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions shellevents/shellevents
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ while true; do
"openwindow") WINDOWADDRESS="$1" WORKSPACENAME="$2" WINDOWCLASS="$3" WINDOWTITLE="$4" event_openwindow ;;
"closewindow") WINDOWADDRESS="$1" event_closewindow ;;
"movewindow") WINDOWADDRESS="$1" WORKSPACENAME="$2" event_movewindow ;;
"windowtitle") WINDOWADDRESS="$1" event_windowtitle ;;
"openlayer") NAMESPACE="$1" event_openlayer ;;
"closelayer") NAMESPACE="$1" event_closelayer ;;
"submap") SUBMAPNAME="$1" event_submap ;;
Expand Down
4 changes: 4 additions & 0 deletions shellevents/shellevents_default.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ event_movewindow() {
: # WINDOWADDRESS WORKSPACENAME
}

event_windowtitle() {
: # WINDOWADDRESS
}

event_openlayer() {
: # NAMESPACE
}
Expand Down

0 comments on commit e2cb355

Please sign in to comment.