Explorar el Código

Fix filename variable typo when loading

Alois Mahdal hace 9 años
padre
commit
38988bd4c9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      libexec/saturnin-clip

+ 1
- 1
libexec/saturnin-clip Ver fichero

@@ -59,7 +59,7 @@ lsclips() {
59 59
 
60 60
 load_clip() {
61 61
     local clipname=$1
62
-    local fname=$(saturnin clip ls | saturnin dmenu | cut -d\   -f 1)
62
+    local name=$(saturnin clip ls | saturnin dmenu | cut -d\   -f 1)
63 63
     cat $STORAGE_DIR/$name | xclip -i -selection $clipname
64 64
 }
65 65