View CCEVENTF.CMD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/******************************************************************************/ | |
/* */ | |
/* Command: CCEVENTF - EVFEVENT-File für RDi erzeugen */ | |
/* */ | |
/******************************************************************************/ | |
CMD PROMPT('EVFEVENT-File für RDi erzeugen') + | |
ALLOW(*ALL) MODE(*ALL) | |
PARM KWD(ACTION) TYPE(*NAME) RSTD(*YES) DFT(*ALL) + | |
SPCVAL((*ALL) (*OPEN) (*WRITE) (*CLOSE)) MAX(1) + |
View .conkyrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
conky.config = { | |
use_xft = true, | |
xftalpha = 0.1, | |
font = 'Sans:size=8', | |
own_window = true, | |
own_window_type = 'normal', | |
own_window_transparent = true, | |
own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', |
View CTLOPT.RPGLE
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//--------------------------------------------------------- | |
// usage: | |
// /COPY CTLOPT | |
// ... | |
//--------------------------------------------------------- | |
ctl-opt Copyright('(C)2020 Daniel Gross, daniel@qpgmr.de'); | |
ctl-opt CCSID(*CHAR:*JOBRUN); | |
ctl-opt Option(*SRCSTMT:*SHOWCPY:*NODEBUGIO:*NOUNREF); | |
ctl-opt DatFmt(*ISO) TIMFMT(*ISO); | |
ctl-opt PgmInfo(*PCML:*MODULE); |
View JOBLOG.RPGLE
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dcl-proc joblog; | |
//-------------------------------------------- | |
// usage: | |
// ... | |
// joblog('message for the joblog'); | |
// ... | |
// /COPY JOBLOG; | |
//-------------------------------------------- | |
dcl-pi *N; | |
pMsg VarChar(250) Value; |
View PRINT.RPGLE
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dcl-proc print; | |
//-------------------------------------------- | |
// usage: | |
// ... | |
// print('Message'); | |
// ... | |
// /COPY PRINT | |
//-------------------------------------------- | |
dcl-pi *N; | |
pMsg VarChar(5000) Const; |