mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Run-dialog, ignore dot files.
This commit is contained in:
parent
df49b0709b
commit
eb20e77d6e
1 changed files with 4 additions and 0 deletions
|
@ -149,6 +149,10 @@ static char ** get_apps ( void )
|
|||
dent->d_type != DT_UNKNOWN ) {
|
||||
continue;
|
||||
}
|
||||
// Skip dot files.
|
||||
if(dent->d_name[0] == '.') {
|
||||
continue;
|
||||
}
|
||||
|
||||
int found = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue