fixed pc-get

This commit is contained in:
Schrottkatze 2022-09-14 11:19:26 +02:00
parent 7b14f9a283
commit 13822863d5
2 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@ mkdir -p $HOME/permaclip
tr_name=$(echo ${@% (*} | xargs)
if [ x"$tr_name" != x"" ]; then
xclip -selection c -i $HOME/permaclip/${tr_name% (*} &> /dev/null
nohup bash -c "xclip -selection c -i $HOME/permaclip/${tr_name% (*}" > /dev/null
exit 0
fi
@ -11,5 +11,5 @@ echo -e "\0markup-rows\x1ftrue"
for reg in $(ls ~/permaclip); do
content=$(cat ~/permaclip/$reg)
echo -e "<b>$reg</b> (<i>${content:0:50}...</i>)"
echo -e "$reg (<i>${content:0:50}...</i>)"
done

View file

@ -12,5 +12,5 @@ echo -e "\0markup-rows\x1ftrue"
for reg in $(ls ~/permaclip); do
content=$(cat ~/permaclip/$reg)
echo -e "<b>$reg</b> (<i>${content:0:30}</i>)"
echo -e "$reg (<i>${content:0:30}</i>)"
done