mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2024-12-23 07:39:36 +01:00
16 lines
292 B
Bash
Executable File
16 lines
292 B
Bash
Executable File
#!/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!"
|