14 lines
443 B
D
14 lines
443 B
D
|
|
module patch.xresources;
|
||
|
|
|
||
|
|
import st;
|
||
|
|
import x;
|
||
|
|
import config;
|
||
|
|
import patches;
|
||
|
|
|
||
|
|
static if (isPatchEnabled!"XRESOURCES_PATCH") {
|
||
|
|
// The xresources functionality is already implemented in main.d
|
||
|
|
// This module serves as a placeholder for consistency with C patches
|
||
|
|
|
||
|
|
// The actual resource loading and config_init functions are defined in main.d
|
||
|
|
// They handle reading X resources and applying them to configuration variables
|
||
|
|
}
|