Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

Commit

Permalink
fix: show native wm title if not set in map config
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston committed Jul 20, 2022
1 parent 7ea103e commit dc79780
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ func getActiveWindowTitle(event *i3.WindowEvent) {
// use the mapped title
if len(mapConf.Title) > 0 {
name = mapConf.Title
} else {
name = title
}
printOutput(icon, name)
return
Expand Down

0 comments on commit dc79780

Please sign in to comment.