How to install and configure FreeBSD 11.2

A few months ago I started using FreeBSD. First it was only virtual machine but later on I bought a Lenovo ThinkPad x240  to install there Freebsd 11.2. This is a story of my setup and customization. The most up to date manual and backup config files are here at https://gitlab.com/jacekkowalczyk82/freebsd   Installation FreeBSD 11.2 … Continue reading How to install and configure FreeBSD 11.2

How to Setup DWM from suckless.org at Kali Linux / Debian

Install packages and get dev libraries sudo apt install dwm suckless-tools sudo apt install stterm mkdir /opt cd /opt git clone git://git.suckless.org/dwm cd dwm sudo apt install libx11-dev libxft-dev libxinerama-dev Make changes in source files: diff --git a/config.def.h b/config.def.h index 1c0b587..fc42d00 100644 --- a/config.def.h +++ b/config.def.h @@ -44,7 +44,7 @@ static const Layout layouts[] = … Continue reading How to Setup DWM from suckless.org at Kali Linux / Debian

How to Install DWM from suckless.org at Fedora 29

sudo dnf install dwm git dmenu st mkdir ~/git && cd ~/git git clone git://git.suckless.org/dwm cd dwm sudo dnf install libX11-devel sudo dnf install libXft-devel sudo dnf install libXinerama-devel sudo dnf install nitrogen sudo dnf install xorg-x11-xinit-session edit config.mk file commit 7a013dd1af0bb0fb50ea4496910c98c53c7dd840 (HEAD -> kowalczy-dwm-fedora) Author: Jacek Kowalczyk <jacekkowalczyk82@gmail.com> Date: Tue Nov 20 14:25:20 2018 … Continue reading How to Install DWM from suckless.org at Fedora 29

Msys2 POSIX tools on Windows

How to turn your Windows 10 into unix like environment   What is Msys2 [ http://www.msys2.org/ ] MSYS2 is a software distro and building platform for Windows At its core is an independent rewrite of MSYS, based on modern Cygwin (POSIX compatibility layer) and MinGW-w64 with the aim of better interoperability with native Windows software. … Continue reading Msys2 POSIX tools on Windows