Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

List of your linux commands Apps

Off-Topic discussions about science, technology, and non Debian specific topics.
Message
Author
User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: List of your linux commands Apps

#76 Post by bester69 »

Head, All what is not GUI, better in this Post.. Thanks. :wink:
Head_on_a_Stick wrote:
Foot (foo terminal)

The fast, lightweight and minimalistic Wayland terminal emulator.

Features
  • Fast (see benchmarks, and performance)
  • Lightweight, in dependencies, on-disk and in-memory
  • Wayland native
  • DE agnostic
  • User configurable font fallback
  • On-the-fly font resize
  • On-the-fly DPI font size adjustment
  • Scrollback search
  • Color emoji support
  • Server/daemon mode
  • Multi-seat
  • Synchronized Updates support
  • Sixel image support
EDIT: only available for testing/unstable. I couldn't backport it but I didn't try very hard.
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

User avatar
Lecram
Posts: 120
Joined: 2009-06-03 08:54

Re: List of your linux commands Apps

#77 Post by Lecram »

Aksharamukha: An Open Source Transliteration Tool.You can install it as an python3 package.It Currently supports 85 scripts and 8 romanization method.
It also has an online tool

Code: Select all

pip3 install aksharamukha
Now start python3 and type

Code: Select all

from aksharamukha import transliterate
transliterate.process('HK', 'Telugu', 'buddhaH') 

1. https://aksharamukha.appspot.com/python
2. https://aksharamukha.appspot.com/documentation
3. https://aksharamukha.appspot.com/converter
4. https://aksharamukha.appspot.com/download

User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: List of your linux commands Apps

#78 Post by bester69 »

fuse-zip
fuse-zip is a fuse filesystem, that enables any program to work with a ZIP archive as though it is a plain directory.
Unlike other FUSE filesystems, only fuse-zip provides write support to ZIP archives.
Also, fuse-zip is faster that all known implementations on large archives with many files.
https://manpages.ubuntu.com/manpages/bi ... zip.1.html

Example.:
cutvid.sh : Script that execute application (losslesscut) embedded in a zip without uncompressed it and spare space disk.

Code: Select all

#!/bin/bash
#
pathLosscut="/tmp/LosslessCut-linux-x64"
fusermount -u "$pathLosscut"
mkdir -p "$pathLosscut"
fuse-zip -r -o nonempty  /home/myuser/LINUXDEBS/progs/LosslessCut-linux-x64.zip "$pathLosscut/"

cd "$pathLosscut/LosslessCut-linux-x64"
./LosslessCut &
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

Post Reply