Fvwm3 Tutorial
In my continuing saga of trying and using window managers (wm), I have installed Fvwm3. By way of providing a bit of background I'll start by describing my environment: Fvwm3…
In my continuing saga of trying and using window managers (wm), I have installed Fvwm3. By way of providing a bit of background I'll start by describing my environment: Fvwm3…
For those who are interested in having a version of BunsenLabs (Lithium) running on MX19 and/or antiX19, I have begun work on that task. Right now I have no plans…
Slightly modified from the original MakeTechEasier article: How to fix Kali’s sound issue Getting audio output is a simple enough process with a little bit of effort. The first thing…
The following script (or cli) will reduce MXLinux 18 to a relatively small distro. ################################# #!/bin/bash sudo apt update sudo apt-get remove --purge aisleriot asunder chromium-bsu chromium-bsu-data clementine clipit dconf-editor…
I remove the following standard MX components from the basic installation: sudo apt-get purge gmtp orage featherpad nomacs nomacs-l10n pppoeconf asunder chromium-bsu chromium-bsu-data clipit gnome-ppp gnome-hearts hexchat hexchat-common lbreakout2 lbreakout2-data…
#!/bin/bash #set -x ACTION="$1" TEMP_SOURCES_BASE="/tmp/mx-testrepo-apt-sources.list.d-temp.$USER" TEMP_SOURCES_LIST_D="${TEMP_SOURCES_BASE}.$$.$RANDOM$RANDOM" TEMP_SOURCES_LIST=$TEMP_SOURCES_LIST_D/temp_source.list rm -fr ${TEMP_SOURCES_BASE}.* mkdir $TEMP_SOURCES_LIST_D echo -e "\n## /etc/apt/sources.list.d/mx.list" | tee $TEMP_SOURCES_LIST echo -e "## mx-testrepo" | tee -a $TEMP_SOURCES_LIST cat /etc/apt/sources.list.d/mx.list |…
#!/bin/bash # ====== Cleanup ====== # Clean packages and install scripts in /var/cache/apt/archives/ sudo apt-get clean # Removes orphaned packages which are no longer needed and purges sudo apt autoremove…