Browse Source

Fix filename variable typo when loading

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

+ 1
- 1
libexec/saturnin-clip View File

59
 
59
 
60
 load_clip() {
60
 load_clip() {
61
     local clipname=$1
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
     cat $STORAGE_DIR/$name | xclip -i -selection $clipname
63
     cat $STORAGE_DIR/$name | xclip -i -selection $clipname
64
 }
64
 }
65
 
65