1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-07-31 21:59:25 -04:00

Disable drun mode as it is broken.

* Does not handle %[uf] whatever in Exec command.
 * It is not it own binary.
 * It has no build in file browser.
 * etc.
This commit is contained in:
Dave Davenport 2016-08-29 07:49:11 +02:00
parent e4cab560f4
commit 56c2d0dfb2

View file

@ -368,10 +368,12 @@ static int add_mode ( const char * token )
modi[num_modi] = &run_mode; modi[num_modi] = &run_mode;
num_modi++; num_modi++;
} }
/*
else if ( strcasecmp ( token, "drun" ) == 0 ) { else if ( strcasecmp ( token, "drun" ) == 0 ) {
modi[num_modi] = &drun_mode; modi[num_modi] = &drun_mode;
num_modi++; num_modi++;
} }
*/
// combi dialog // combi dialog
else if ( strcasecmp ( token, "combi" ) == 0 ) { else if ( strcasecmp ( token, "combi" ) == 0 ) {
modi[num_modi] = &combi_mode; modi[num_modi] = &combi_mode;