Convert PDF -> DjVU (script)
#!/bin/bash #convert PDF -> DjVU #by ManyRoads http://eirenicon.org OLDIFS="$IFS" IFS=$'\n' for PDF in "$@"; do FILE="${PDF%.*}" echo "Which pages ? e.g. type: 1-6, for all pages, press ENTER" read pages…
#!/bin/bash #convert PDF -> DjVU #by ManyRoads http://eirenicon.org OLDIFS="$IFS" IFS=$'\n' for PDF in "$@"; do FILE="${PDF%.*}" echo "Which pages ? e.g. type: 1-6, for all pages, press ENTER" read pages…
If you find yourself in need of a script to toggle your touchpad on/off (because like me, your pc does not have a function key for that purpose), this may…
#!/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…
To restart xfce panel (via cli/ terminal): $ xfce4-panel -r To Prevent Panel Use: source: https://unix.stackexchange.com/questions/38048/how-to-remove-all-the-panels-in-xfce You can not delete all panels. The right way of doing this is to…
Once XDoTool has been installed - if not already present - it will be necessary to create a keybind to access the root menu in ~/.config/openbox/rc.xml, and again below the…
What follows is a copy of the conky I use for Keybindings. You need to modify for your specific keybindings (if they differ from mine). #--------------------------------------------------------------------- # # This conky…
If you are new to tint2 and would like an example to work from, the following should do the trick. It is the one I use on Openbox in antiX.…
Welcome to the eirenicon Knowledgebase (KB). The information provided here represents snippets, tricks, tips & lessons-learned. Most materials are Linux (Debian or arch-base) oriented. The distros most often referenced are…
If you want to quickly customize the applications base on either your Debian based (Ubuntu based should work like Debian) or Arch based installation, you can create simple cut &…