8 lines
129 B
Bash
8 lines
129 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
pasta_dir="$HOME/CopyPastas"
|
||
|
|
|
||
|
|
file=$(ls "$pasta_dir" | wofi --dmenu -p "Copypastas" -i)
|
||
|
|
|
||
|
|
wl-copy < "$pasta_dir/$file"
|