- Back in history: Without changing the default setup Alt + Y and Alt + U go to previous and next directory in history, which may be enough on most cases. If not, [you always have Home, Enter][1].
- Sort: Sort: alt + ! SortReverse: alt + @ SortByName: alt + # SortByExt: alt + $ SortBySize: alt + % SortByMTime: alt + ^
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name StartPage Bangs | |
// @namespace http://tarkus.co/ | |
// @version 0.1 | |
// @description Adds !s to StartPage, like DDG | |
// @match https://startpage.com/* | |
// @run-at document-start | |
// ==/UserScript== | |
// Bangs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Check which version you're using | |
echo | |
echo "---------------------------------------------------------------------------" | |
cd ~ || exit | |
upower --version | |
UPOWER_ORIG_VER=$(upower --version) | |
# Check Debian / Ubuntu vs. Arch Linux / Manjaro |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
format: | |
marcxml: | |
metadataPrefix: marxml | |
metadataNamespace: http://www.loc.gov/MARC21/slim http://www.loc.gov/standards/marcxml/schema/MARC21slim | |
schema: http://www.loc.gov/MARC21/slim http://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd | |
include_items: 1 | |
oai_dc: | |
metadataPrefix: oai_dc | |
metadataNamespace: http://www.openarchives.org/OAI/2.0/oai_dc/ | |
schema: http://www.openarchives.org/OAI/2.0/oai_dc.xsd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%YAML 1.2 | |
--- | |
# By Pablo Bianchi | |
name: MARC line mode (yaz-marcdump) | |
file_extensions: | |
- line | |
scope: string | |
uuid: 222f19a4-f491-4e71-a391-00b138add2a0 | |
contexts: |
Inspired from this Twitter post.
tig
# text-mode interface for Gitdiff-so-fancy
# 11.5kncdu
# Disk usage analyzerbat
# cat alternativefzf
# 20.4k A command-line fuzzy finder. Probably there is a oh-my-zsh pluginhttpie
# 40.3k CLI, cURL-like tool for humans. See https://httpie.org/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Little script to play a music/sound on pomodoros through headphones and call to come back to work through HDMI speakers. | |
# set -euo pipefail # Unofficial bash strict mode | |
# Prerequsitres: gtts (`pip install --user --upgrade gtts`, mpv (`flatpak install io.mpv.Mpv`), vlc, libsox-fmt-mp3 and retry. | |
# Also use yt-dlp instead of yt-dl https://hund.tty1.se/2021/10/12/how-to-use-yt-dlp-instead-of-yt-dl-with-mpv.html | |
# TODO/Known bugs: | |
# - Fix issue with PipeWire: pacmd stat No PulseAudio daemon running, or not running as session daemon. https://gitlab.freedesktop.org/pipewire/pipewire/-/issues/357 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# set -euo pipefail # unofficial bash strict mode | |
# IFS=$'\n\t' | |
echo "This script bulk export patron images from a Koha instance and generate DATALINK.TXT to import into another instance." | |
# @TODO | |
# - | |
# [PARAMS] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Simple motd script for any systemd Linux (tested on Debian) | |
# Inspiration: https://superuser.com/questions/919962/landscape-sysinfo-for-centos | |
# Inspiration 2: https://github.com/thusoy/headsup/blob/master/headsup.py | |
os-name=$() | |
os-kernel=$() | |
date-today=$() | |
system-load=$() | |
processes=$(cat /proc/loadavg | cut -d"/" -f2| cut -d" " -f1) |
NewerOlder