mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-01-31 04:57:57 +00:00
0681d1fd7c
It's been a while but I've been using NixOS (or anything styled like it like GuixSD, for example) and distro-hopped from Arch Linux. I think it's high noon for making the structure of this setup to be truer to one of the big objectives which is how easy to transfer this between different setups. Which means I removed some things such as the package lists, systemd config files, and package manager-specific configs. While the solution is easy (which is to simply ignore the system-specific files) but I'm not going with the pragmatic solution not because I'm a dumbass but because I'm so smart that I want to create a challenge for myself to solve a puzzle on figuring out a way on how to structure my dotfiles. :) Such a productive use of my time, that's for sure.
23 lines
628 B
Bash
Executable File
23 lines
628 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# This is based from the `mansplain` script by Luke Smith.
|
|
# Video reference is at https://www.youtube.com/watch?v=8E8sUNHdzG8.
|
|
# There's not much room for customizability so you'll have to edit the script itself if you want something different.
|
|
|
|
# Minimum requirements as of writing this script at 2019-12-18:
|
|
# * man - v2.9.0
|
|
# * xargs - v4.7.0
|
|
# * rofi - v1.5.4
|
|
# * awk - v5.0.1
|
|
|
|
# Optional dependencies:
|
|
# * zathura - v0.4.4
|
|
# * girara - v0.3.3
|
|
# * pdf-mupdf - v0.3.5
|
|
|
|
set -o pipefail
|
|
|
|
man -k . | rofi -dmenu -p 'Choose a manual' | awk '{print $1}' | xargs --no-run-if-empty "$TERMINAL" --command man
|
|
|
|
|