summaryrefslogtreecommitdiff
path: root/src/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs
index f3b40f6..f052c22 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -27,6 +27,10 @@ pub const BORDER_FOCUSED: Colour = Colour::from_hex(0xff0000);
/// The main modifier used for keybinds.
pub const MAIN_MODIFIER: ModMask = ModMask::CONTROL;
+/// Commands to run as soon as setup is done
+#[cfg(feature = "autostart")]
+pub const AUTOSTART_SCRIPTS: &[&[&str]] = &[];
+
/// The keybinds to use.
pub const KEYBINDS: Keybinds = Keybinds(&[
bind!(MAIN_MODIFIER , Return -> &|_| spawn::<_, &str>("dmenu_run", [])),