It's not a fix but it might be useful:
choose a folder
press CTRL-L
enter a filename
This shortcut is commonly used in various apps (also in Firefox itself) to give the focus to the address bar.
It's not a fix but it might be useful:
choose a folder
press CTRL-L
enter a filename
This shortcut is commonly used in various apps (also in Firefox itself) to give the focus to the address bar.
Merci, Sonia, it's one of the most beautiful greeting cards I've ever seen.
Joyeux Noël ! Bonne année, bonne santé !
AntonioPt wrote: Sun Nov 17, 2024 10:03 pmim using this sed but aint working since gonna add in all names
You can limit the range of lines where sed will search for a "Name=":
Code: Select all
sed -i -e '/^\[.*Entry/,/^\[/{/^Name=/a\' -e "the line you want to add" -e '}' sample.desktop
MochiMoppel wrote: Wed Jul 31, 2024 10:43 pmYou've got "$@" parameters at the end of your command. Be aware that these are NOT the same parameters…
You've a point here! I was too lazy to actually test the functions (or even read the code carefully).
Code: Select all
CONTENT='line 1
line 2
line 3'
INSERTTEXT='extra line(s)\
'
echo "$CONTENT" | sed "3i $INSERTTEXT"
results in
Code: Select all
line 1
line 2
extra line(s)
line 3
---
citron
means c itron
that is change the content of every line to "itron".
fredx181 wrote: Sat Nov 25, 2023 8:09 pmOther way (only way AFAIK, but anyone correct me if I'm wrong) to prevent is to configure Firefox in the settings to not remember history, but that may not be what you want.
There is a setting for this in the about:config page: browser.sessionstore.resume_from_crash
.
Dziękuję za wskazówkę. I've compiled Icon 9.5.23a on my Fossapup64-9.5 without a problem. It seems to work:
Don't really know what to do with this language next but it looks interesting.
MochiMoppel wrote: Sun Oct 29, 2023 2:11 amI have en_US.UTF-8 (the default), and this used to work. Now it doesn't.
Can see it in VoidPup64-22.02. Probably a change in the glibc. At least find /tmp/ -not -regex ".*"
still works. It's trying to match a whole path so it's not an equivalent but better than nothing.