Adapt to Nix
This commit is contained in:
parent
fe69664195
commit
822adb11c6
9 changed files with 147 additions and 59 deletions
26
flake.lock
Normal file
26
flake.lock
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"nodes": {
|
||||||
|
"nixpkgs": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1684076341,
|
||||||
|
"narHash": "sha256-60pNoKP2opEnGoPGrVo43Vt433El4+BcSl0TS36qJgQ=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "1feac2b61756a5a4392a6cc5f5b510325312437d",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": "nixpkgs"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": "root",
|
||||||
|
"version": 7
|
||||||
|
}
|
41
flake.nix
41
flake.nix
|
@ -21,16 +21,53 @@
|
||||||
forAllSystems = f: nixpkgs.lib.genAttrs allSystems (system: f {
|
forAllSystems = f: nixpkgs.lib.genAttrs allSystems (system: f {
|
||||||
pkgs = import nixpkgs { inherit system; };
|
pkgs = import nixpkgs { inherit system; };
|
||||||
});
|
});
|
||||||
|
|
||||||
|
make_package = pkgs: pkgs.stdenv.mkDerivation {
|
||||||
|
name = "q-sh";
|
||||||
|
src = self;
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp q $out/bin
|
||||||
|
cp q-* $out/bin
|
||||||
|
echo "OUT " $out
|
||||||
|
'';
|
||||||
|
|
||||||
|
postFixup = ''
|
||||||
|
q-fixup() {
|
||||||
|
TOOL="$1"
|
||||||
|
PATH="$2"
|
||||||
|
${pkgs.findutils}/bin/find $out -type f -name 'q*' -exec ${pkgs.gnused}/bin/sed -i "s#ENV_$TOOL=.*#ENV_$TOOL=$PATH#g" {} +
|
||||||
|
}
|
||||||
|
q-fixup "fzf" "${pkgs.fzf}/bin/fzf"
|
||||||
|
q-fixup "find" "${pkgs.findutils}/bin/find"
|
||||||
|
q-fixup "sed" "${pkgs.gnused}/bin/sed"
|
||||||
|
q-fixup "awk" "${pkgs.gawk}/bin/awk"
|
||||||
|
q-fixup "bc" "${pkgs.bc}/bin/bc"
|
||||||
|
q-fixup "pass" "${pkgs.pass}/bin/pass"
|
||||||
|
q-fixup "cut" "${pkgs.coreutils}/bin/cut"
|
||||||
|
q-fixup "base64" "${pkgs.coreutils}/bin/base64"
|
||||||
|
q-fixup "cat" "${pkgs.coreutils}/bin/cat"
|
||||||
|
q-fixup "tac" "${pkgs.coreutils}/bin/tac"
|
||||||
|
q-fixup "sort" "${pkgs.coreutils}/bin/sort"
|
||||||
|
q-fixup "uniq" "${pkgs.coreutils}/bin/uniq"
|
||||||
|
q-fixup "wl_copy" "${pkgs.wl-clipboard}/bin/wl-copy"
|
||||||
|
q-fixup "xdg_open" "${pkgs.xdg-utils}/bin/xdg-open"
|
||||||
|
q-fixup "q" "$out/bin"
|
||||||
|
'';
|
||||||
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
# Development environment output
|
|
||||||
devShells = forAllSystems ({ pkgs }: {
|
devShells = forAllSystems ({ pkgs }: {
|
||||||
default = pkgs.mkShell {
|
default = pkgs.mkShell {
|
||||||
# The Nix packages provided in the environment
|
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
fzf
|
fzf
|
||||||
|
pass
|
||||||
|
bc
|
||||||
|
wl-clipboard
|
||||||
|
xdg-utils
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
packages = forAllSystems({ pkgs }: {"q-sh" = make_package pkgs;});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
21
q
21
q
|
@ -28,12 +28,17 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
if [[ -z "$Q_SCRIPT_DIR" ]]; then
|
ENV_fzf=fzf
|
||||||
Q_SCRIPT_DIR=~/.config/q.sh
|
ENV_find=find
|
||||||
fi
|
ENV_awk=awk
|
||||||
|
ENV_q=~/.config/q.sh
|
||||||
|
|
||||||
SELF=$(cd -P -- "$(dirname -- "$0")" && printf '%s\n' "$(pwd -P)/$(basename -- "$0")")
|
SELF=$(cd -P -- "$(dirname -- "$0")" && printf '%s\n' "$(pwd -P)/$(basename -- "$0")")
|
||||||
|
|
||||||
|
if [[ -z "$Q_SCRIPT_DIR" ]]; then
|
||||||
|
Q_SCRIPT_DIR="$ENV_q"
|
||||||
|
fi
|
||||||
|
|
||||||
INDEX_FILE=~/.q.index
|
INDEX_FILE=~/.q.index
|
||||||
HINT_FILE=~/.q.hints
|
HINT_FILE=~/.q.hints
|
||||||
|
|
||||||
|
@ -46,7 +51,7 @@ new_scripts_exist() {
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NEWER_FILES="$(find "$Q_SCRIPT_DIR" -name "q-*" -newer "$INDEX_FILE")"
|
NEWER_FILES="$($ENV_find "$Q_SCRIPT_DIR" -name "q-*" -newer "$INDEX_FILE")"
|
||||||
|
|
||||||
if [[ -z "$NEWER_FILES" ]]; then
|
if [[ -z "$NEWER_FILES" ]]; then
|
||||||
return 1
|
return 1
|
||||||
|
@ -61,7 +66,7 @@ rebuild_index() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
pushd "$Q_SCRIPT_DIR" >/dev/null
|
pushd "$Q_SCRIPT_DIR" >/dev/null
|
||||||
find . -type f -name 'q-*' | while read -r FN
|
$ENV_find . -type f -name 'q-*' | while read -r FN
|
||||||
do
|
do
|
||||||
FILENAME="$(echo "$FN" | sed 's/^\.\///g')"
|
FILENAME="$(echo "$FN" | sed 's/^\.\///g')"
|
||||||
|
|
||||||
|
@ -79,7 +84,7 @@ rebuild_hints() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
pushd "$Q_SCRIPT_DIR" >/dev/null
|
pushd "$Q_SCRIPT_DIR" >/dev/null
|
||||||
find . -type f -name 'q-*' | while read -r FN
|
$ENV_find . -type f -name 'q-*' | while read -r FN
|
||||||
do
|
do
|
||||||
FILENAME="$(echo "$FN" | sed 's/^\.\///g')"
|
FILENAME="$(echo "$FN" | sed 's/^\.\///g')"
|
||||||
|
|
||||||
|
@ -93,7 +98,7 @@ get_scripts_for_cmd() {
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "$1" | awk -f "$INDEX_FILE" | while read -r line
|
echo "$1" | $ENV_awk -f "$INDEX_FILE" | while read -r line
|
||||||
do
|
do
|
||||||
echo "$line"
|
echo "$line"
|
||||||
done
|
done
|
||||||
|
@ -197,7 +202,7 @@ fi
|
||||||
if [[ -z "$COMMAND" ]]; then
|
if [[ -z "$COMMAND" ]]; then
|
||||||
PREF="$SELF -c"
|
PREF="$SELF -c"
|
||||||
INITIAL=""
|
INITIAL=""
|
||||||
FZF_DEFAULT_COMMAND="$PREF '$INITIAL'" fzf \
|
FZF_DEFAULT_COMMAND="$PREF '$INITIAL'" $ENV_fzf \
|
||||||
--bind "change:reload-sync:$PREF {q} || true" \
|
--bind "change:reload-sync:$PREF {q} || true" \
|
||||||
--ansi --query "$INITIAL" \
|
--ansi --query "$INITIAL" \
|
||||||
--preview "$SELF -p {}" \
|
--preview "$SELF -p {}" \
|
||||||
|
|
|
@ -1,24 +1,27 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
ENV_cat=cat
|
||||||
|
ENV_awk=awk
|
||||||
|
ENV_xdg_open=xdg-open
|
||||||
|
|
||||||
if [[ -z "$@" ]]; then
|
if [[ -z "$@" ]]; then
|
||||||
echo "^b .*$"
|
echo "^b .*$"
|
||||||
elif [[ "$1" == "--hint" ]]; then
|
elif [[ "$1" == "--hint" ]]; then
|
||||||
shift
|
shift
|
||||||
if [[ -f ~/.bookmarks.txt ]]; then
|
if [[ -f ~/.bookmarks.txt ]]; then
|
||||||
cat ~/.bookmarks.txt | awk '{print $1 " b " $2}'
|
$ENV_cat ~/.bookmarks.txt | $ENV_awk '{print $1 " b " $2}'
|
||||||
fi
|
fi
|
||||||
elif [[ "$1" == "--complete" ]]; then
|
elif [[ "$1" == "--complete" ]]; then
|
||||||
shift
|
shift
|
||||||
if [[ -f ~/.bookmarks.txt ]]; then
|
if [[ -f ~/.bookmarks.txt ]]; then
|
||||||
cat ~/.bookmarks.txt | awk '{print $1 " b " $2}'
|
$ENV_cat ~/.bookmarks.txt | $ENV_awk '{print $1 " b " $2}'
|
||||||
fi
|
fi
|
||||||
elif [[ "$1" == "--preview" ]]; then
|
elif [[ "$1" == "--preview" ]]; then
|
||||||
shift
|
shift
|
||||||
echo "$1"
|
echo "$1"
|
||||||
elif [[ "$1" == "--run" ]]; then
|
elif [[ "$1" == "--run" ]]; then
|
||||||
shift
|
shift
|
||||||
xdg-open "$1"
|
$ENV_xdg_open "$1"
|
||||||
else
|
else
|
||||||
echo "Unexpected arguments: $@"
|
echo "Unexpected arguments: $@"
|
||||||
fi
|
fi
|
||||||
|
|
9
q-browse
9
q-browse
|
@ -1,5 +1,8 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
ENV_xdg_open=xdg-open
|
||||||
|
ENV_cut=cut
|
||||||
|
|
||||||
if [[ -z "$@" ]]; then
|
if [[ -z "$@" ]]; then
|
||||||
echo "^f .*$"
|
echo "^f .*$"
|
||||||
elif [[ "$1" == "--hint" ]]; then
|
elif [[ "$1" == "--hint" ]]; then
|
||||||
|
@ -9,11 +12,11 @@ elif [[ "$1" == "--complete" ]]; then
|
||||||
echo "0 $@"
|
echo "0 $@"
|
||||||
elif [[ "$1" == "--preview" ]]; then
|
elif [[ "$1" == "--preview" ]]; then
|
||||||
shift
|
shift
|
||||||
URL="$(echo "$@" | cut -d ' ' -f3-)"
|
URL="$(echo "$@" | $ENV_cut -d ' ' -f3-)"
|
||||||
echo "Will open '$URL' in firefox"
|
echo "Will open '$URL' in firefox"
|
||||||
elif [[ "$1" == "--run" ]]; then
|
elif [[ "$1" == "--run" ]]; then
|
||||||
shift
|
shift
|
||||||
URL="$(echo "$@" | cut -d ' ' -f3-)"
|
URL="$(echo "$@" | $ENV_cut -d ' ' -f3-)"
|
||||||
(nohup xdg-open "$URL" 2>/dev/null &)
|
(nohup $ENV_xdg_open "$URL" 2>/dev/null &)
|
||||||
sleep 0.01
|
sleep 0.01
|
||||||
fi
|
fi
|
||||||
|
|
10
q-calc
10
q-calc
|
@ -1,7 +1,11 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
ENV_bc=bc
|
||||||
|
ENV_wl_copy=wl-copy
|
||||||
|
ENV_cut=cut
|
||||||
|
|
||||||
calc() {
|
calc() {
|
||||||
res="$(echo "$1" | bc 2>/dev/null)"
|
res="$(echo "$1" | $ENV_bc 2>/dev/null)"
|
||||||
if [ "$res" == "" ]; then
|
if [ "$res" == "" ]; then
|
||||||
res="-"
|
res="-"
|
||||||
fi
|
fi
|
||||||
|
@ -24,10 +28,10 @@ elif [[ "$1" == "--preview" ]]; then
|
||||||
elif [[ "$1" == "--run" ]]; then
|
elif [[ "$1" == "--run" ]]; then
|
||||||
shift
|
shift
|
||||||
echo "$1"
|
echo "$1"
|
||||||
echo "$1" | (nohup wl-copy -n 2>/dev/null &)
|
echo "$1" | (nohup $ENV_wl_copy -n 2>/dev/null &)
|
||||||
elif [[ "$1" == "--cli" ]]; then
|
elif [[ "$1" == "--cli" ]]; then
|
||||||
shift
|
shift
|
||||||
calc "$(echo "$@" | cut -d ' ' -f2-)"
|
calc "$(echo "$@" | $ENV_cut -d ' ' -f2-)"
|
||||||
else
|
else
|
||||||
echo "Unexpected arguments: $@"
|
echo "Unexpected arguments: $@"
|
||||||
fi
|
fi
|
||||||
|
|
14
q-clipboard
14
q-clipboard
|
@ -1,26 +1,30 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
ENV_cat=cat
|
||||||
|
ENV_tac=tac
|
||||||
|
ENV_base64=base64
|
||||||
|
ENV_wl_copy=wl-copy
|
||||||
|
|
||||||
if [[ -z "$@" ]]; then
|
if [[ -z "$@" ]]; then
|
||||||
echo "^c .*$"
|
echo "^c .*$"
|
||||||
elif [[ "$1" == "--hint" ]]; then
|
elif [[ "$1" == "--hint" ]]; then
|
||||||
shift
|
shift
|
||||||
if [[ -f ~/.clipboard.txt ]]; then
|
if [[ -f ~/.clipboard.txt ]]; then
|
||||||
cat ~/.clipboard.txt | tac
|
$ENV_cat ~/.clipboard.txt | $ENV_tac
|
||||||
fi
|
fi
|
||||||
elif [[ "$1" == "--complete" ]]; then
|
elif [[ "$1" == "--complete" ]]; then
|
||||||
shift
|
shift
|
||||||
if [[ -f ~/.clipboard.txt ]]; then
|
if [[ -f ~/.clipboard.txt ]]; then
|
||||||
cat ~/.clipboard.txt | tac
|
$ENV_cat ~/.clipboard.txt | $ENV_tac
|
||||||
fi
|
fi
|
||||||
elif [[ "$1" == "--preview" ]]; then
|
elif [[ "$1" == "--preview" ]]; then
|
||||||
shift
|
shift
|
||||||
echo "$1" | base64 -d
|
echo "$1" | $ENV_base64 -d
|
||||||
elif [[ "$1" == "--run" ]]; then
|
elif [[ "$1" == "--run" ]]; then
|
||||||
shift
|
shift
|
||||||
TEXT="$(echo "$1" | base64 -d)"
|
TEXT="$(echo "$1" | $ENV_base64 -d)"
|
||||||
echo "$TEXT"
|
echo "$TEXT"
|
||||||
echo -n "$TEXT" | (nohup wl-copy -n 2>/dev/null &)
|
echo -n "$TEXT" | (nohup $ENV_wl_copy -n 2>/dev/null &)
|
||||||
else
|
else
|
||||||
echo "Unexpected arguments: $@"
|
echo "Unexpected arguments: $@"
|
||||||
fi
|
fi
|
||||||
|
|
9
q-pass
9
q-pass
|
@ -1,5 +1,10 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
ENV_pass=pass
|
||||||
|
ENV_find=find
|
||||||
|
ENV_sed=sed
|
||||||
|
ENV_wl_copy=wl-copy
|
||||||
|
|
||||||
if [[ -z "$@" ]]; then
|
if [[ -z "$@" ]]; then
|
||||||
# Return a regular expression that should trigger
|
# Return a regular expression that should trigger
|
||||||
# this subcommand. q.sh will then pass control to
|
# this subcommand. q.sh will then pass control to
|
||||||
|
@ -14,7 +19,7 @@ elif [[ "$1" == "--complete" ]]; then
|
||||||
# passwords. This will be used to provide a list of
|
# passwords. This will be used to provide a list of
|
||||||
# completions.
|
# completions.
|
||||||
cd ~/.password-store
|
cd ~/.password-store
|
||||||
find . -name "*.gpg" | sed -E 's/\.\/(.*)\.gpg/\1 p \1/'
|
$ENV_find . -name "*.gpg" | $ENV_sed -E 's/\.\/(.*)\.gpg/\1 p \1/'
|
||||||
elif [[ "$1" == "--preview" ]]; then
|
elif [[ "$1" == "--preview" ]]; then
|
||||||
shift
|
shift
|
||||||
# This information will be displayed in the preview
|
# This information will be displayed in the preview
|
||||||
|
@ -26,7 +31,7 @@ elif [[ "$1" == "--run" ]]; then
|
||||||
# one of the options. We now decrypt the password
|
# one of the options. We now decrypt the password
|
||||||
# and place it to the clipboard.
|
# and place it to the clipboard.
|
||||||
NAME="$1"
|
NAME="$1"
|
||||||
pass "$NAME" | (nohup wl-copy -n 2>/dev/null &)
|
$ENV_pass "$NAME" | (nohup $ENV_wl_copy -n 2>/dev/null &)
|
||||||
|
|
||||||
# A short sleep is needed to wait for child process
|
# A short sleep is needed to wait for child process
|
||||||
# to spawn before exiting.
|
# to spawn before exiting.
|
||||||
|
|
11
q-run
11
q-run
|
@ -1,21 +1,22 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
export PATH=~/.prefix/bin:~/.local/bin:$PATH
|
ENV_awk=awk
|
||||||
|
ENV_sort=sort
|
||||||
|
ENV_uniq=uniq
|
||||||
|
|
||||||
find_all_executables() {
|
find_all_executables() {
|
||||||
{
|
{
|
||||||
IFS=:; for d in $PATH; do for f in $d/*; do [ -f $f ] && [ -x $f ] && echo ${f##*/}; done; done;
|
IFS=:; for d in $PATH; do for f in $d/*; do [ -f $f ] && [ -x $f ] && echo ${f##*/}; done; done;
|
||||||
} | sort
|
} | $ENV_sort | $ENV_uniq
|
||||||
#flatpak --columns=application --app list | tail -n +1 | awk '{print "flatpak run " $0}';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if [[ -z "$@" ]]; then
|
if [[ -z "$@" ]]; then
|
||||||
echo "^run [a-zA-Z0-9_-]*$"
|
echo "^run [a-zA-Z0-9_-]*$"
|
||||||
elif [[ "$1" == "--hint" ]]; then
|
elif [[ "$1" == "--hint" ]]; then
|
||||||
find_all_executables | awk '{print $1 " run " $1}'
|
find_all_executables | $ENV_awk '{print $1 " run " $1}'
|
||||||
elif [[ "$1" == "--complete" ]]; then
|
elif [[ "$1" == "--complete" ]]; then
|
||||||
shift
|
shift
|
||||||
find_all_executables | awk '{print $1 " run " $1}'
|
find_all_executables | $ENV_awk '{print $1 " run " $1}'
|
||||||
elif [[ "$1" == "--preview" ]]; then
|
elif [[ "$1" == "--preview" ]]; then
|
||||||
shift
|
shift
|
||||||
echo "Will run $1"
|
echo "Will run $1"
|
||||||
|
|
Loading…
Reference in a new issue