I often add a ★ to a video or music file name etc that is particular special to me. But its hard to type. I have to find the symbol then copy/paste it, takes a lot of time.
Is there a way to make the symbol readily available on the desktop screenshot below somewhere?:
So that all I gotta do is just click it one time & it puts the ★ into my clipboard?
I asked chatgpt/Google-PaLM and it offered a solution, but dont know if its even a real one. It told me to create a txt file, with only ★ inside it, then make the text file "allow to run as executable" in it's permissions. Then just click it and it should copy it into my clipboard. It didnt work.
But maybe chatgpt was getting at something, an interesting idea?
Maybe a .py script file would work?
And then i could either pin the txt or .py script to my taskbar & a one click would copy it to my clipboard?
Chatgpt also suggested the Custom Keyboard Shortcut solution, but with that u got to always remember & enter into the sequence/code for the shortcut which i'm not interested in doing, for multiple reasons.
Lastly I'm also aware of the Insert ASCII or Unicode command "Ctrl + Shift + U" which would be: ctrl+shift+u then 02605 then space =★
But i'm looking for a one click button in nemo file manager or taskbar.
I just tried to make a .py script:
import pyperclip
# Copy the ★ symbol to the clipboard
pyperclip.copy('★')
But it doesnt work, i even installed pyperclip, & it successfully installed, but when i check "pyperclip --version" it says the command isnt recognized.
When i do sudo pip3 install pyperclip
It says:
Requirement already satisfied: pyperclip in /usr/local/lib/python3.8/dist-packages (1.8.2)
when i do: pip3 show pyperclip
It says i have it installed, i think.
Even after all this, i'd have to find a way to pin the .py file to my taskbar.
-Thanks!