mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2024-12-23 15:49:40 +01:00
16 lines
292 B
Plaintext
16 lines
292 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
if [ -z "$1" ]
|
||
|
then
|
||
|
file=$(find . -maxdepth 1 -type f | cut -c 3- | rofi -i -dmenu -p "Select file to copy its contents")
|
||
|
else
|
||
|
file=$1
|
||
|
fi
|
||
|
|
||
|
|
||
|
if [ -z "$file" ]; then
|
||
|
exit
|
||
|
fi
|
||
|
cat $file | xclip -selection c
|
||
|
notify-send "Contents of the '$file' is copied to clipboard!"
|