My desktop environment.

My friends and people I meet often get confused when they see the tools I use in my workflow. So I decided to make a page dedicated to this.

LINUX

Whether it is my laptop, Pi server, or any embedded device I tinker with, I have been using Linux for the past five years. My laptop runs Fedora and my server runs Debian.

DESKTOP ENVIRONMENT

OTHER TOOLS

  • Nextcloud syncs my contacts and calendar with it’s WebDav interface.
  • Gitea is my primary Git server and GitHub account works as a mirror.
  • Glance is a dashboard that aggregates RSS feeds of blogs and YouTube channels that I like.
  • Syncthing syncs my photographs across devices.
  • Bitwarden is a self-hosted password manager.

SUMMARY OF LESS COMMANDS

Less is a program similar to more(1), but it has many more features. Less does not have to read the entire input file before starting, so with large input files it starts up faster than text editors like vi(1).

h H Display this help.
q Q Exit help menu.
[number] Navigate to a tab.
j ↓ Scroll Down.
k ↑ Scroll Up.
G Scroll to top.
gg Scroll to bottom.

Less uses termcap (or terminfo on some systems), so it can run on a variety of terminals. There is even limited support for hardcopy terminals. (On a hardcopy terminal, lines which should be printed at the top of the screen are prefixed with a caret.) Commands are based on both more and vi. Commands may be preceded by a decimal number, called N in the descriptions below. The number is used by some commands, as indicated.