From 7b4b429f42f626250c204ac255a3d6b83211b659 Mon Sep 17 00:00:00 2001 From: q3aql Date: Tue, 16 Nov 2021 00:01:31 +0100 Subject: [PATCH] Dotfiles config update (2021-11-16) --- .cargo/.crates.toml | 2 ++ .cargo/.crates2.json | 1 + .cargo/.package-cache | 0 .cargo/bin/cargo-bin-here.txt | 1 + .cargo/env | 11 +++++++++++ .config/i3/config | 2 +- .fzf.bash | 6 +++--- 7 files changed, 19 insertions(+), 4 deletions(-) create mode 100644 .cargo/.crates.toml create mode 100644 .cargo/.crates2.json create mode 100644 .cargo/.package-cache create mode 100644 .cargo/bin/cargo-bin-here.txt create mode 100644 .cargo/env diff --git a/.cargo/.crates.toml b/.cargo/.crates.toml new file mode 100644 index 0000000..27193f9 --- /dev/null +++ b/.cargo/.crates.toml @@ -0,0 +1,2 @@ +[v1] +"i3-style 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = ["i3-style"] diff --git a/.cargo/.crates2.json b/.cargo/.crates2.json new file mode 100644 index 0000000..167f3fa --- /dev/null +++ b/.cargo/.crates2.json @@ -0,0 +1 @@ +{"installs":{"i3-style 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)":{"version_req":null,"bins":["i3-style"],"features":[],"all_features":false,"no_default_features":false,"profile":"release","target":"x86_64-unknown-linux-gnu","rustc":"rustc 1.56.1 (59eed8a2a 2021-11-01)\nbinary: rustc\ncommit-hash: 59eed8a2aac0230a8b53e89d4e99d55912ba6b35\ncommit-date: 2021-11-01\nhost: x86_64-unknown-linux-gnu\nrelease: 1.56.1\nLLVM version: 13.0.0\n"}}} \ No newline at end of file diff --git a/.cargo/.package-cache b/.cargo/.package-cache new file mode 100644 index 0000000..e69de29 diff --git a/.cargo/bin/cargo-bin-here.txt b/.cargo/bin/cargo-bin-here.txt new file mode 100644 index 0000000..573541a --- /dev/null +++ b/.cargo/bin/cargo-bin-here.txt @@ -0,0 +1 @@ +0 diff --git a/.cargo/env b/.cargo/env new file mode 100644 index 0000000..4560da0 --- /dev/null +++ b/.cargo/env @@ -0,0 +1,11 @@ +#!/bin/sh +# rustup shell setup +# affix colons on either side of $PATH to simplify matching +case ":${PATH}:" in + *:"$HOME/.cargo/bin":*) + ;; + *) + # Prepending path in case a system-installed rustc needs to be overridden + export PATH="$HOME/.cargo/bin:$PATH" + ;; +esac diff --git a/.config/i3/config b/.config/i3/config index 2a46035..7438fbb 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -250,7 +250,7 @@ bindsym $mod+r mode "resize" bar { position top status_command i3blocks - tray_output DisplayPort-0 + #tray_output DisplayPort-0 colors { separator #AAAAAA background #222133 diff --git a/.fzf.bash b/.fzf.bash index a79c1f5..d694007 100644 --- a/.fzf.bash +++ b/.fzf.bash @@ -1,13 +1,13 @@ # Setup fzf # --------- if [[ ! "$PATH" == */home/q3aql/.fzf/bin* ]]; then - export PATH="${PATH:+${PATH}:}/home/q3aql/.fzf/bin" + export PATH="${PATH:+${PATH}:}${HOME}/.fzf/bin" fi # Auto-completion # --------------- -[[ $- == *i* ]] && source "/home/q3aql/.fzf/shell/completion.bash" 2> /dev/null +[[ $- == *i* ]] && source "~/.fzf/shell/completion.bash" 2> /dev/null # Key bindings # ------------ -source "/home/q3aql/.fzf/shell/key-bindings.bash" +source "~/.fzf/shell/key-bindings.bash"