Should I install my text editor from the ubuntu software store or download it manually? And how do I download it manually?
Asked
Active
Viewed 20 times
Should I install my text editor from the ubuntu software store or download it manually? And how do I download it manually?
mousepad
which is the Xfce text editor already (it's pretty good & the most efficient resource wise for use with the Xfce desktop as it uses libs already in memory as used by the desktop).. If you wanted to installmousepad
via command, it would besudo apt install mousepad
. Sincemousepad
isn't available as snap, I'll usegedit
as example, but to install a snap it'ssnap install gedit
(gedit
is available in deb format too so you canapt install gedit
) – guiverc Jun 12 '21 at 06:58sudo apt install geany
from the repository universe. – sudodus Jun 12 '21 at 07:25