Browse Source

Re-align case routers

Alois Mahdal 9 years ago
parent
commit
42e8058364
1 changed files with 14 additions and 14 deletions
  1. 14
    14
      libexec/saturnin-clip

+ 14
- 14
libexec/saturnin-clip View File

@@ -79,27 +79,27 @@ rm_all() {
79 79
 clipname=primary
80 80
 action=list
81 81
 while true; do case "$1" in
82
-    save) action=save;          shift   ;;
83
-    load) action=load;          shift   ;;
84
-    ls)   action=list;          shift   ;;
85
-    rm)   action=remove;        shift   ;;
86
-    clean) action=clean;        shift   ;;
87
-    -1)   clipname=primary;     shift   ;;
88
-    -2)   clipname=secondary;   shift   ;;
89
-    -c)   clipname=clipboard;   shift   ;;
90
-    "")   break;                        ;;
91
-    *)    usage;                        ;;
82
+    save)   action=save;        shift ;;
83
+    load)   action=load;        shift ;;
84
+    ls)     action=list;        shift ;;
85
+    rm)     action=remove;      shift ;;
86
+    clean)  action=clean;       shift ;;
87
+    -1)     clipname=primary;   shift ;;
88
+    -2)     clipname=secondary; shift ;;
89
+    -c)     clipname=clipboard; shift ;;
90
+    "")     break                     ;;
91
+    *)      usage                     ;;
92 92
 esac done
93 93
 
94 94
 debug "\$@='$@'"
95 95
 debug -v clipname action
96 96
 
97 97
 case $action in
98
-    save) save_clip $clipname ;;
99
-    load) load_clip $clipname ;;
98
+    save)   save_clip $clipname ;;
99
+    load)   load_clip $clipname ;;
100 100
     remove) rm_clip ;;
101
-    clean) rm_all ;;
102
-    list) lsclips ;;
101
+    clean)  rm_all ;;
102
+    list)   lsclips ;;
103 103
 esac
104 104
 
105 105