mirror of
https://github.com/davatorium/rofi.git
synced 2025-02-10 15:44:41 -05:00
Make workspace name also searchable
This commit is contained in:
parent
ee310c8470
commit
aa08c8ea78
1 changed files with 3 additions and 0 deletions
|
@ -354,6 +354,9 @@ static int window_match ( const Mode *sw, GRegex **tokens, unsigned int index )
|
|||
if ( !test && c->name != NULL && c->name[0] != '\0' ) {
|
||||
test = token_match ( ftokens, c->name );
|
||||
}
|
||||
if ( !test && c->wmdesktopstr != NULL && c->wmdesktopstr[0] != '\0' ) {
|
||||
test = token_match ( ftokens, c->wmdesktopstr );
|
||||
}
|
||||
|
||||
if ( test == 0 ) {
|
||||
match = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue