about summary refs log tree commit diff stats
path: root/a70d23.how-do-i-browse-the-internet.txt
diff options
context:
space:
mode:
authorAoi Koizumi <novaburst@kalli.st>2022-03-12 21:59:19 -0300
committerAoi Koizumi <novaburst@kalli.st>2022-03-12 21:59:19 -0300
commit7b10faf7494f396be6fe4131e1b562cc384f7c12 (patch)
tree72a049bd0de68bfb329659ff307dee21167a06ed /a70d23.how-do-i-browse-the-internet.txt
downloadmirror-world-7b10faf7494f396be6fe4131e1b562cc384f7c12.tar.gz
Reinitialize:Mirror-World()
Signed-off-by: Aoi Koizumi <novaburst@kalli.st>
Diffstat (limited to 'a70d23.how-do-i-browse-the-internet.txt')
-rw-r--r--a70d23.how-do-i-browse-the-internet.txt25
1 files changed, 25 insertions, 0 deletions
diff --git a/a70d23.how-do-i-browse-the-internet.txt b/a70d23.how-do-i-browse-the-internet.txt
new file mode 100644
index 0000000..9a06c00
--- /dev/null
+++ b/a70d23.how-do-i-browse-the-internet.txt
@@ -0,0 +1,25 @@
+ID: a70d23c4-6ab7-4543-acee-c41afd084226
+Title: How do I browse the Internet
+Authors: Nova[有線魔女] <novaburst@envs.net>
+Date: 2021-07-03T11:40:31-00:00
+Date-Edited: 2022-01-28T15:29:14-03:00
+Topics: Gemini, Gopher, Web
+
+I'm mostly following the [minimal internet] approach , and I use [luakit] [forcefully modified into being sane] web browser, and I barely use the smartphone I have. Because I've no point to use it.
+
+I use also my favorite email clients and favorite IM clients on my computer.
+
+Outside of the WWW I also browse the [Geminispace] alongside the [Gopherspace] , with their respective clients.
+
+I barely use social media, and if I do, I browse [ActivityPub] (mostly [Mastodon]) via [qutebrowser] , using a frontend rather than the default web UI, and no Electron apps.
+
+[minimal internet]: <https://texts.orbitalfox.eu/7585eefb.htm>
+[luakit]: <https://luakit.github.io>
+[forcefully modified into being sane]: <https://gt.kalli.st/novaburst/luakit-misc>
+[Geminispace]: <https://gemini.circumlunar.space>
+[Gopherspace]: <https://en.wikipedia.org/wiki/Gopher_(protocol)>
+[ActivityPub]: <https://www.w3.org/TR/activitypub/>
+[Mastodon]: <https://joinmastodon.org>
+[qutebrowser]: <https://qutebrowser.org>
+
+# Update #1: Social media no longer deserves my attention and so I ditched it, the profiles do still exist though.
font-weight: bold } /* Literal.Number.Integer.Long */
dwm - dynamic window manager
============================
dwm is an extremely fast, small, and dynamic window manager for X.


Requirements
------------
In order to build dwm you need the Xlib header files.


Installation
------------
Edit config.mk to match your local setup (dwm is installed into
the /usr/local namespace by default).

Afterwards enter the following command to build and install dwm (if
necessary as root):

    make clean install


Running dwm
-----------
Add the following line to your .xinitrc to start dwm using startx:

    exec dwm

In order to connect dwm to a specific display, make sure that
the DISPLAY environment variable is set correctly, e.g.:

    DISPLAY=foo.bar:1 exec dwm

(This will start dwm on display :1 of the host foo.bar.)

In order to display status info in the bar, you can do something
like this in your .xinitrc:

    while true
    do
        echo `date` `uptime | sed 's/.*,//'`
        sleep 1
    done | dwm


Configuration
-------------
The configuration of dwm is done by creating a custom config.h
and (re)compiling the source code.