Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 107526 | Differences between
and this patch

Collapse All | Expand All

(-)app.cpp (+5 lines)
Lines 110-115 Link Here
110
110
111
    // Read configuration and theme
111
    // Read configuration and theme
112
    cfg.readConf(CFGFILE);
112
    cfg.readConf(CFGFILE);
113
    /* Read daemon_mode form CFGFILE if  -d (daemonmode = false ) option 
114
        is not passed */
115
    if (!daemonmode) { 
116
        daemonmode = Cfg::string2int(cfg.getOption("daemon_mode").c_str());
117
    }
113
    string themebase = "";
118
    string themebase = "";
114
    string themefile = "";
119
    string themefile = "";
115
    string themedir = "";
120
    string themedir = "";
(-)slim.conf (+3 lines)
Lines 49-51 Link Here
49
49
50
# Log file
50
# Log file
51
logfile             /var/log/slim.log
51
logfile             /var/log/slim.log
52
53
# Set daemon mode. Default on. off = 0 ; on = 1  
54
daemon_mode         1
(-)cfg.cpp (+3 lines)
Lines 38-43 Link Here
38
    options.insert(option("shutdown_msg","The system is halting..."));
38
    options.insert(option("shutdown_msg","The system is halting..."));
39
    options.insert(option("reboot_msg","The system is rebooting..."));
39
    options.insert(option("reboot_msg","The system is rebooting..."));
40
    options.insert(option("sessions","wmaker,blackbox,icewm"));
40
    options.insert(option("sessions","wmaker,blackbox,icewm"));
41
    /* Add new CFGFILE option daemon_mode for setting daemon mode 
42
       from CFGFILE*/
43
    options.insert(option("daemon_mode","1"));
41
44
42
    // Theme stuff
45
    // Theme stuff
43
    options.insert(option("input_panel_x","50%"));
46
    options.insert(option("input_panel_x","50%"));

Return to bug 107526