add a lot of software

This commit is contained in:
Denis Lehmann 2020-05-04 22:49:09 +02:00
parent c176d607d1
commit 002abaa307
8 changed files with 291 additions and 13 deletions

View file

@ -1,5 +0,0 @@
Casual
------
Nerdy
-----

View file

@ -1,4 +0,0 @@
Android Links
=============
This list contains nice open source software for Android.

View file

@ -15,9 +15,15 @@ Casual
### Office
[**ghostwriter**](http://wereturtle.github.io/ghostwriter/)
: Distraction-free Markdown editor
[**Libre Office**](https://libreoffice.org/)
: Free and powerful office suite
[**TeXstudio**](https://texstudio.org/)
: integrated writing environment for creating LaTeX documents
Nerdy
-----
@ -26,15 +32,28 @@ Nerdy
[**Matrix**](https://matrix.org/)
: Open network for secure, decentralized communication
[**Mutt**](http://mutt.org/)
: Small but very powerful text-based mail client
[**Neomutt**](https://neomutt.org/)
: Fork of **Mutt** with added features
### File Editing
[**Kakoune**](https://kakoune.org/)
: Modal editor, similar to Vim
[**Neovim**](https://neovim.io/)
: Hyperextensible Vim-based text editor
[**Pandoc**](https://pandoc.org/)
: Swiss-army knife for converting files from one markup format into
another
[**Vim**](https://www.vim.org/)
: Highly configurable text editor built to make creating and changing
any kind of text very efficient
### File Management
[**exa**](https://the.exa.website/)
@ -43,11 +62,48 @@ Nerdy
[**ranger**](https://ranger.github.io/)
: Console file manager with VI key bindings
[**rsync**](https://rsync.samba.org/)
: Utility that provides fast incremental file transfer
### File Sharing
[**Magic Wormhole**](https://github.com/warner/magic-wormhole/)
: Get things from one computer to another, safely
### Look & Feel
[**Pywal**](https://github.com/dylanaraps/pywal)
: Tool that generates a color palette from the dominant colors in an
image
### Music
[**Beets**](http://beets.io/)
: Media library management system for obsessive music geeks
[**Mopidy**](https://mopidy.com/)
: Extensible music server written in **Python**
### Networking
[**aria2**](https://aria2.github.io/)
: Lightweight multi-protocol & multi-source command-line download
utility
[**Mosh**](https://mosh.org/)
: Remote terminal application that allows roaming, supports
intermittent connectivity, and provides intelligent local echo and
line editing of user keystrokes
[**Nmap**](https://nmap.org/)
: Utility for network discovery and security auditing
[**Termshark**](https://termshark.io/)
: A terminal UI for tshark, inspired by **Wireshark**
[**Wireshark**](https://wireshark.org/)
: The world's foremost and widely-used network protocol analyzer
### Operating Systems
[**NixOS**](https://nixos.org/)
@ -78,6 +134,35 @@ Nerdy
: Free internet metasearch engine which aggregates results from more
than 70 search services
### Terminal
[**fish**](https://fishshell.com/)
: Fish is a smart and user-friendly command line
[**kitty**](https://sw.kovidgoyal.net/kitty/)
: The fast, featureful, GPU based terminal emulator
[**rxvt-unicode**](http://software.schmorp.de/pkg/rxvt-unicode.html)
: rxvt-unicode is a fork of the well known terminal emulator rxvt
[**tmux**](https://tmux.github.io)
: Terminal multiplexer
[**Xonsh**](https://xon.sh/)
: Python-powered, cross-platform, Unix-gazing shell language and
command prompt
### Version Controlling
[**Git**](https://git-scm.com/)
: Distributed version control system designed to handle everything
from small to very large projects with speed and efficiency
### Video
[**mpv**](https://mpv.io/)
: Media player for the command line
### Web Browsers
[**qutebrowser**](https://qutebrowser.org/)
@ -88,12 +173,25 @@ Nerdy
### Window Managers
[**2bwm**](https://github.com/venam/2bwm)
: Fast floating WM, with the particularity of having 2 borders
[**awesome**](https://awesomewm.org/)
: Highly configurable, next generation framework window manager for X
[**bspwm**](https://github.com/baskerville/bspwm)
: Tiling window manager based on binary space partitioning
[**i3**](https://i3wm.org/)
: Improved tiling window manager
[**i3-gaps**](https://github.com/Airblader/i3/)
: **i3** with more features
[**Sway**](https://swaywm.org/)
: Sway is a tiling Wayland compositor and a drop-in replacement for
**i3**
[**xmonad**](https://xmonad.org/)
: Dynamically tiling X11 window manager that is written and configured
in **Haskell**

47
raw/body_android.md Normal file
View file

@ -0,0 +1,47 @@
Casual
------
### Communication
[**Riot**](https://about.riot.im/)
: Universal secure chat app entirely under your control, based on the
Matrix protocol
### File Synchronisation
[**Syncthing**](https://syncthing.net/)
: Synchronizes files between two or more computers in real time,
safely protected from prying eyes
### Stores
[**F-Droid**](https://f-droid.org/)
: F-Droid is an installable catalogue of FOSS applications
### Video
[**NewPipe**](https://newpipe.schabi.org/)
: Lightweight YouTube experience
Nerdy
-----
### Custom ROMs
[**LineageOS**](https://lineageos.org/)
: Operating system for various devices, based on the Android mobile
platform
### System Tools
[**ClassyShark3xodus**](https://forum.xda-developers.com/android/software-hacking/dexdump-xodus-trackers-apk-static-t3833391)
: Scan apps for trackers
### Terminal
[**Nix-on-Droid**](https://nix-on-droid.unboiled.info/)
: Nix package manager
[**Termux**](https://termux.com/)
: Terminal emulator and Linux environment app that works directly with
no rooting or setup required

View file

@ -3,11 +3,11 @@
# Cleanup files
pandoc header.md -o header.md
pandoc body.md -o body.md
pandoc android_header.md -o android_header.md
pandoc android_body.md -o android_body.md
pandoc header_android.md -o header_android.md
pandoc body_android.md -o body_android.md
# Generate README.md and android.md
pandoc -H header.md --toc body.md -o ../README.md
pandoc -t gfm ../README.md -o ../README.md
pandoc -H android_header.md --toc android_body.md -o ../android.md
pandoc -H header_android.md --toc body_android.md -o ../android.md
pandoc -t gfm ../android.md -o ../android.md

7
raw/header_android.md Normal file
View file

@ -0,0 +1,7 @@
Android Links
=============
This is a collection of nice open source software for Android. Below,
you find two categories. [Casual](#casual) contains software for
everyone. [Nerdy](#nerdy) contains software which is suited for people
who are technically more interested.