mirror of
https://github.com/davatorium/rofi.git
synced 2025-07-31 21:59:25 -04: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 ) {
|
dent->d_type != DT_UNKNOWN ) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
// Skip dot files.
|
||||||
|
if(dent->d_name[0] == '.') {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
int found = 0;
|
int found = 0;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue