summaryrefslogtreecommitdiff
path: root/dot
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2020-05-26 21:07:12 -0400
committerAndrew Cady <d@jerkface.net>2020-05-26 21:07:12 -0400
commitbaae20273ca229ae5c0312c75a2419e5f1a63cd7 (patch)
tree05cc08444b078553b375992d0137d301c54ac4ba /dot
parent759a6a8c532a726c26120f2d4f248b5fc6c95b26 (diff)
sliceweasel: fix syntax error
Diffstat (limited to 'dot')
-rwxr-xr-xdot/local/bin/sliceweasel2
1 files changed, 1 insertions, 1 deletions
diff --git a/dot/local/bin/sliceweasel b/dot/local/bin/sliceweasel
index c6f07d0..2a23c66 100755
--- a/dot/local/bin/sliceweasel
+++ b/dot/local/bin/sliceweasel
@@ -113,7 +113,7 @@ case "$1" in
113 --) shift; launch_command "$@" ;; 113 --) shift; launch_command "$@" ;;
114 --resize) resize_control_group "$2" ;; 114 --resize) resize_control_group "$2" ;;
115 --resize=*) resize_control_group "${1#--resize=}" ;; 115 --resize=*) resize_control_group "${1#--resize=}" ;;
116 --cpu=*) recpu_control_group "${1#--cpu=}" 116 --cpu=*) recpu_control_group "${1#--cpu=}" ;;
117 --*) usage; [ "$1" = '--help' -o "$1" = '--usage' ] ;; 117 --*) usage; [ "$1" = '--help' -o "$1" = '--usage' ] ;;
118 *) launch_command "$@" ;; 118 *) launch_command "$@" ;;
119esac 119esac