some intermediate commit

This commit is contained in:
arcan1s
2014-10-30 01:05:09 +03:00
parent 6a784d2e28
commit 45c248b101
7 changed files with 333 additions and 0 deletions

View File

@ -0,0 +1,3 @@
#!/bin/bash
curl ip4.telize.com

View File

@ -0,0 +1,5 @@
ACTIVE=true
INTERVAL=1
PREFIX=
OUTPUT=true
REDIRECT=0

View File

@ -0,0 +1,3 @@
#!/usr/bin/python
print ("Hello the f$%king world!")

View File

@ -0,0 +1,15 @@
# is this script is active?
ACTIVE=false
# update interval in default plasmoid interval
INTERVAL=1
# does this script have output?
# set to 'false' if it is an action and will not show in the plasmoid
OUTPUT=true
# prefix to run this script. Usually this field should be blank,
# but you may want to set command (e.g. script language) directly
PREFIX=
# redirect output streams
# -1: stdout to stderr
# 0: do nothing
# 1: stderr to stdout
REDIRECT=0