diff --git a/common/hellcooling/0001-web-build-local-extensions-as-well.patch b/common/hellcooling/0001-web-build-local-extensions-as-well.patch deleted file mode 100644 index d325d8a..0000000 --- a/common/hellcooling/0001-web-build-local-extensions-as-well.patch +++ /dev/null @@ -1,65 +0,0 @@ -From 2f2ed36df2c55ca60c7074cf80f97cdc6d53f83e Mon Sep 17 00:00:00 2001 -From: Alyxia Sother -Date: Mon, 22 May 2023 10:14:07 +0200 -Subject: [PATCH] web: build local extensions as well - ---- - web/buildExtension.js | 35 +++++++++++++++++++++++++++++++++++ - 1 file changed, 35 insertions(+) - -diff --git a/web/buildExtension.js b/web/buildExtension.js -index 206408c..4984ab2 100644 ---- a/web/buildExtension.js -+++ b/web/buildExtension.js -@@ -1,7 +1,37 @@ -+const fs = require("fs"); -+const os = require("os"); -+const path = require("path"); - const webpack = require("webpack"); - process.env.BUILD_TYPE = "extension"; - const config = require("./webpack.config.js"); - -+const PATH_TO_EXTS = path.join( -+ os.homedir(), -+ "Library/ApplicationSupport/hh3/ext" -+); -+const HH_EXT_DIR = path.join(__dirname, "../ext"); -+let exts = fs.readdirSync(PATH_TO_EXTS); -+exts = exts.filter((e) => e !== ".git"); -+ -+function deleteF(path) { -+ const isDir = fs.lstatSync(path).isDirectory(); -+ if (isDir) fs.rmSync(path, {recursive: true}); -+ else fs.unlinkSync(path); -+} -+ -+for (const ext of exts) { -+ if (fs.existsSync(path.join(HH_EXT_DIR, ext))) -+ deleteF(path.join(HH_EXT_DIR, ext)); -+ -+ const source = path.join(PATH_TO_EXTS, ext); -+ const dest = path.join(HH_EXT_DIR, ext); -+ -+ fs.cpSync(source, dest, { -+ recursive: true, -+ }); -+ console.log(`${source} -> ${dest}`); -+} -+ - webpack.webpack(config, (err, stats) => { - if (!stats?.compilation) { - console.log(err); -@@ -21,5 +51,10 @@ webpack.webpack(config, (err, stats) => { - }) - ); - } -+ for (let ext of exts) { -+ ext = path.join(HH_EXT_DIR, ext); -+ deleteF(ext); -+ console.log(`✕ ${ext}`); -+ } - } - }); --- -2.37.1 (Apple Git-137.1) - diff --git a/common/hellcooling/build-local-exts.diff b/common/hellcooling/build-local-exts.diff deleted file mode 100644 index daf5283..0000000 --- a/common/hellcooling/build-local-exts.diff +++ /dev/null @@ -1,53 +0,0 @@ -diff --git a/web/buildExtension.js b/web/buildExtension.js -index 206408c..4984ab2 100644 ---- a/web/buildExtension.js -+++ b/web/buildExtension.js -@@ -1,7 +1,37 @@ -+const fs = require("fs"); -+const os = require("os"); -+const path = require("path"); - const webpack = require("webpack"); - process.env.BUILD_TYPE = "extension"; - const config = require("./webpack.config.js"); - -+const PATH_TO_EXTS = path.join( -+ os.homedir(), -+ "Library/ApplicationSupport/hh3/ext" -+); -+const HH_EXT_DIR = path.join(__dirname, "../ext"); -+let exts = fs.readdirSync(PATH_TO_EXTS); -+exts = exts.filter((e) => e !== ".git"); -+ -+function deleteF(path) { -+ const isDir = fs.lstatSync(path).isDirectory(); -+ if (isDir) fs.rmSync(path, {recursive: true}); -+ else fs.unlinkSync(path); -+} -+ -+for (const ext of exts) { -+ if (fs.existsSync(path.join(HH_EXT_DIR, ext))) -+ deleteF(path.join(HH_EXT_DIR, ext)); -+ -+ const source = path.join(PATH_TO_EXTS, ext); -+ const dest = path.join(HH_EXT_DIR, ext); -+ -+ fs.cpSync(source, dest, { -+ recursive: true, -+ }); -+ console.log(`${source} -> ${dest}`); -+} -+ - webpack.webpack(config, (err, stats) => { - if (!stats?.compilation) { - console.log(err); -@@ -21,5 +51,10 @@ webpack.webpack(config, (err, stats) => { - }) - ); - } -+ for (let ext of exts) { -+ ext = path.join(HH_EXT_DIR, ext); -+ deleteF(ext); -+ console.log(`✕ ${ext}`); -+ } - } - }); diff --git a/common/hellcooling/config/discord-laptop-web.json b/common/hellcooling/config/discord-laptop-web.json index b88b168..f3aad99 100644 Binary files a/common/hellcooling/config/discord-laptop-web.json and b/common/hellcooling/config/discord-laptop-web.json differ diff --git a/common/hellcooling/install.sh b/common/hellcooling/install.sh deleted file mode 100644 index e69de29..0000000 diff --git a/nix/darwin-configuration.nix b/nix/darwin-configuration.nix index c73922e..f77bef8 100644 --- a/nix/darwin-configuration.nix +++ b/nix/darwin-configuration.nix @@ -32,7 +32,6 @@ gnupg jq kubectl - kubelogin-oidc mosh neovim nixpkgs-fmt diff --git a/zsh/plugins.zsh b/zsh/plugins.zsh index 4f8d46f..ab4c7db 100755 --- a/zsh/plugins.zsh +++ b/zsh/plugins.zsh @@ -6,25 +6,6 @@ _plugin() { [ -z "$DOTFILES_LOAD_SILENT" ] && _perf_timer_stop "plugin $1" } -# based off of Dima's completion generation code, but made dynamic -# https://github.com/dmitmel/dotfiles/blob/19d80233265629b33cf57daf05a928239b0c73a8/zsh/plugins.zsh#L17-L25 -_addcomp() { - local command_name="$1" - local command_args="${2:-completion zsh}" - declare ${command_name}_bin="$(command_locate $command_name)" - local command_bin="${(P)${:-${command_name}_bin}}" - - if [[ -n "${command_bin}" ]]; then - declare ${command_name}_comp_path="${ZSH_CACHE_DIR}/site-functions/_${command_name}" - local comp_path="${(P)${:-${command_name}_comp_path}}" - if [[ "$command_bin" -nt "$comp_path" || ! -s "$comp_path" ]]; then - _perf_timer_start "generate $command_name completions" - eval "$command_bin" "$command_args" >| "$comp_path" - _perf_timer_stop "generate $command_name completions" - fi - fi; unset comp_path -} - _plugin gitio 'denysdovhan/gitio-zsh' # Load the brilliant project management tool. @@ -34,9 +15,27 @@ _plugin project 'https://git.sr.ht/~keanucode/scripts/blob/master/project/projec load="project.zsh" \ # Completions {{{ - _addcomp gh "completion -s zsh" - _addcomp bw "completion --shell zsh" - _addcomp kubectl + # from Dima, assuming it's based off of: + # https://github.com/dmitmel/dotfiles/blob/19d80233265629b33cf57daf05a928239b0c73a8/zsh/plugins.zsh#L17-L25 + if gh_bin="$(command_locate gh)" && [[ -n "$gh_bin" ]]; then + gh_comp_path="${ZSH_CACHE_DIR}/site-functions/_gh" + if [[ "$gh_bin" -nt "$gh_comp_path" || ! -s "$gh_comp_path" ]]; then + _perf_timer_start "generate gh completions" + "$gh_bin" completion -s zsh >| "$gh_comp_path" + _perf_timer_stop "generate gh completions" + fi + unset gh_comp_path + fi; unset gh_bin + + if bw_bin="$(command_locate bw)" && [[ -n "$bw_bin" ]]; then + bw_comp_path="${ZSH_CACHE_DIR}/site-functions/_bw" + if [[ "$bw_bin" -nt "$bw_comp_path" || ! -s "$bw_comp_path" ]]; then + _perf_timer_start "generate bw completions" + "$bw_bin" completion --shell zsh >| "$bw_comp_path" + _perf_timer_stop "generate bw completions" + fi + unset bw_comp_path + fi; unset bw_bin _plugin nim-compl 'https://raw.githubusercontent.com/nim-lang/Nim/devel/tools/nim.zsh-completion' from=url \ after_load='plugin-cfg-path fpath prepend ""'