suckless-utils/slim/const.h
Alexis Jhon Gaspar e1207e1d0d Added slim-fork to the repo
- This introduces a minimalist display manager for the suckless-utils suite
- Added crudely written scripts for reloaading slim's theme via pywal,
  meaning no on-the-fly reloading using keybinds as nost people wouldn't
have their sudo passwordless
- This is based on slim-fork 1.4.0 version.
2023-10-12 23:08:23 +08:00

41 lines
1 KiB
C

/* SLiM - Simple Login Manager
* Copyright (C) 1997, 1998 Per Liden
* Copyright (C) 2004-06 Simone Rota <sip@varlock.com>
* Copyright (C) 2004-06 Johannes Winkelmann <jw@tks6.net>
* Copyright (C) 2022-23 Rob Pearce <slim@flitspace.org.uk>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
#ifndef _CONST_H_
#define _CONST_H_
#define DISPLAY ":0.0"
#define CONSOLE_STR "console"
#define HALT_STR "halt"
#define REBOOT_STR "reboot"
#define EXIT_STR "exit"
#define SUSPEND_STR "suspend"
#define HIDE 0
#define SHOW 1
#define OK_EXIT 0
#define ERR_EXIT 1
/* variables replaced in login_cmd */
#define SESSION_VAR "%session"
#define THEME_VAR "%theme"
/* variables replaced in pre-session_cmd and post-session_cmd */
#define USER_VAR "%user"
/* max height/width for images */
#define MAX_DIMENSION 10000
#endif /* _CONST_H_ */