1
0
Fork 0
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:
QC 2014-06-07 11:00:21 +02:00
parent df49b0709b
commit eb20e77d6e

View file

@ -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;