mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 23:25:52 +05:30
10 lines
202 B
Bash
10 lines
202 B
Bash
|
#!/bin/sh
|
||
|
if [[ -f "$1" ]]; then
|
||
|
TYPE=$(file -b --mime-type "$1")
|
||
|
xclip -selection clipboard -t "$TYPE" -i "$1"
|
||
|
else
|
||
|
echo $1 | xclip -selection clipboard -t text/plain &> /dev/null
|
||
|
exit
|
||
|
fi
|
||
|
exit
|