aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbrightness4
-rwxr-xr-xopen-file2
-rwxr-xr-xsecret4
-rwxr-xr-xtrash3
4 files changed, 11 insertions, 2 deletions
diff --git a/brightness b/brightness
index b2ff43a..a7294fb 100755
--- a/brightness
+++ b/brightness
@@ -4,6 +4,10 @@
4# Requires: xbacklight, a notification program such as herbe or notify-send 4# Requires: xbacklight, a notification program such as herbe or notify-send
5# Usage: brightness {inc|dec} n 5# Usage: brightness {inc|dec} n
6 6
7# ksh completion
8# set -A complete_brightness_1 inc dec
9# set -A complete_brightness_2 5
10
7#notify="notify-send" 11#notify="notify-send"
8notify="herbe" 12notify="herbe"
9 13
diff --git a/open-file b/open-file
index 848fd9b..a7cc551 100755
--- a/open-file
+++ b/open-file
@@ -2,8 +2,6 @@
2 2
3# Inspired by https://github.com/salman-abedin/launch.sh 3# Inspired by https://github.com/salman-abedin/launch.sh
4# Launches files based on their mimetypes 4# Launches files based on their mimetypes
5# Use option -s devour to swallow or -s " " to open normally from terminal
6# Use -t to specify mimetype
7# Requires: dmenu_path or similar (fallback), dmenu-filepicker 5# Requires: dmenu_path or similar (fallback), dmenu-filepicker
8 6
9menu=${MENU:-dmenu} 7menu=${MENU:-dmenu}
diff --git a/secret b/secret
index 5b8afed..14ec2e0 100755
--- a/secret
+++ b/secret
@@ -12,6 +12,10 @@
12 12
13# Requires: openssl, xsel (for clip only) 13# Requires: openssl, xsel (for clip only)
14 14
15# ksh completion
16# set -A complete_sel_1 clip edit show
17# set -A complete_sel_2 box/secret
18
15opts="aes-256-cbc -iter 1000" # options for openssl 19opts="aes-256-cbc -iter 1000" # options for openssl
16timeout=10 # timeout for clip, in ms 20timeout=10 # timeout for clip, in ms
17editor=${EDITOR:-vi} 21editor=${EDITOR:-vi}
diff --git a/trash b/trash
index a9f6fb1..9880cc0 100755
--- a/trash
+++ b/trash
@@ -6,6 +6,9 @@
6# Usage: trash [rm FILE(s)|ls|empty] 6# Usage: trash [rm FILE(s)|ls|empty]
7# Pretty self-explanatory 7# Pretty self-explanatory
8 8
9# ksh completion
10# set -A complete_trash_1 rm ls empty
11
9trashfolder=$XDG_DATA_HOME/mytrash 12trashfolder=$XDG_DATA_HOME/mytrash
10 13
11if [ -z "$1" ]; then 14if [ -z "$1" ]; then

Generated with cgit - Back to sebastiano.tronto.net