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