Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .config/awesome/autorun.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,11 @@ start_xcape() {
xcape -t 200 -e 'Caps_Lock=Escape;Control=Escape;Control_R=Escape'
}

start_insync() {
trickle -s -t 5 -l 20 -d 500 -u 50 insync start
}

run_unique bt-agent
run_unique compton
run_unique flashfocus
run_unique insync start_insync
run_unique lutris
# run_unique light-locker
run_unique mpd
run_unique pulseaudio start-pulseaudio-x11
run_unique transmission-daemon
run_unique xcape start-xcape

nvidia-settings --load-config-only
1 change: 1 addition & 0 deletions .config/kitty/kitty.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
linux_display_server x11
###############################################################################
# fonts
###
Expand Down
336 changes: 168 additions & 168 deletions .config/pacman/mirrorlist

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions .config/pacman/pacman.conf
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ Include = /home/meatwallace/.config/pacman/mirrorlist
[extra]
Include = /home/meatwallace/.config/pacman/mirrorlist

[community]
Include = /home/meatwallace/.config/pacman/mirrorlist

[multilib]
Include = /home/meatwallace/.config/pacman/mirrorlist

75 changes: 9 additions & 66 deletions .config/rofi/config.rasi
Original file line number Diff line number Diff line change
@@ -1,67 +1,10 @@
* {
foreground: #25c5ff;
background: rgba (22,23,25,0.9);
background-color: rgba (2,16,18,0);
border-color: @foreground;
font: "Fantasque Sans Mono 12";
configuration {
timeout {
action: "kb-cancel";
delay: 0;
}
filebrowser {
directories-first: true;
sorting-method: "name";
}
}

window {
background-color: @background;
border: 4 0 0 4;
}

mainbox {}

/* the search bar container */
inputbar {
children: [
entry,
case-indicator
];

padding: 8;
text-color: @foreground;
}

/* text element within the search box */
entry {
spacing: 0;
text-color: @foreground;
}

case-indicator {
spacing: 0;
text-color: @foreground;
}

message {}

textbox {
text-color: @foreground;
}

listview {
fixed-height: 0;
}

element {
padding: 8;
text-color: @foreground;
}

element normal.normal {}

element normal.urgent {}

element normal.active {}

element selected.normal {
background-color: @foreground;
color: @background;
}

element selected.urgent {}

element selected.active {}

2 changes: 1 addition & 1 deletion .config/yay/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"editorflags": "",
"makepkgbin": "makepkg",
"makepkgconf": "",
"pacmanbin": "pacfast",
"pacmanbin": "/usr/sbin/pacman",
"pacmanconf": "$HOME/.config/pacman/pacman.conf",
"tarbin": "bsdtar",
"redownload": "no",
Expand Down
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
nodejs 24.4.1
nodejs 24.8.0
ruby 3.4.4
lua 5.4.8
python 3.13.5
python 3.13.7
golang 1.24.5
5 changes: 5 additions & 0 deletions .zcompletions
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ if [ -x "$(command -v kubectl)" ]; then
# . <(kubectl completion zsh)
fi

if [ -x "$(command -v gcloud)" ]; then
# shellcheck source=/dev/null
. "$HOME/google-cloud-sdk/completion.zsh.inc"
fi

# TODO(#xxxx): enable warpdrive completion on arch
# fpath=(~/bin/wd "$fpath")

10 changes: 10 additions & 0 deletions .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,16 @@ autoload -Uz compinit && compinit
# shellcheck source=.zaliases
. "$HOME/.zaliases"

# install zinit if required
ZINIT_HOME="${XDG_DATA_HOME:-${HOME}/.local/share}/zinit/zinit.git"
if [ ! -d $ZINIT_HOME ]; then
mkdir -p "$(dirname $ZINIT_HOME)"
fi

if [ ! -d $ZINIT_HOME/.git ]; then
git clone https://github.com/zdharma-continuum/zinit.git "$ZINIT_HOME"
fi

# initialize zinit
. "$HOME/.local/share/zinit/zinit.git/zinit.zsh"

Expand Down
80 changes: 0 additions & 80 deletions bin/pacfast

This file was deleted.

12 changes: 11 additions & 1 deletion scripts/agnostic/install_or_update_asdf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ install_or_update_asdf() {
asdf update >/dev/null || true
fi

desired_plugins="golang lua nodejs python ruby"
desired_plugins="nodejs python ruby"

# add our version manager plugins
for plugin in $desired_plugins; do
Expand All @@ -36,6 +36,16 @@ install_or_update_asdf() {
asdf plugin update "$plugin" >/dev/null
fi
done

# upgrade and use the latest versions of our packages
for plugin in $desired_plugins; do
latest_version="$(asdf list-all "$plugin" | grep -E '^[0-9.]+$' | tail -n 1)"

echo "asdf: installing latest version of $plugin@$latest_version"

asdf install "$plugin" "$latest_version" >/dev/null
asdf global "$plugin" "$latest_version" >/dev/null
done
}

install_or_update_asdf "$@"
11 changes: 0 additions & 11 deletions scripts/agnostic/install_or_update_dart_packages.sh

This file was deleted.

12 changes: 0 additions & 12 deletions scripts/agnostic/install_or_update_go_packages.sh

This file was deleted.

11 changes: 0 additions & 11 deletions scripts/agnostic/install_or_update_lua_rocks.sh

This file was deleted.

9 changes: 0 additions & 9 deletions scripts/agnostic/install_or_update_zinit.sh

This file was deleted.

12 changes: 0 additions & 12 deletions scripts/agnostic/install_yarn.sh

This file was deleted.

3 changes: 0 additions & 3 deletions scripts/agnostic/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,10 @@ set -eu
setup() {
scripts="
create_home_directories.sh
install_or_update_zinit.sh
set_zsh_as_default_shell.sh
load_zsh.sh
setup_tmux.sh
setup_nvim.sh
install_yarn.sh
install_or_update_go_packages.sh
install_or_update_python_packages.sh
install_or_update_ruby_gems.sh
"
Expand Down
3 changes: 0 additions & 3 deletions scripts/agnostic/update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,10 @@ set -eu
update() {
scripts="
create_home_directories.sh
install_or_update_zinit.sh
set_zsh_as_default_shell.sh
load_zsh.sh
setup_tmux.sh
setup_nvim.sh
install_yarn.sh
install_or_update_go_packages.sh
install_or_update_python_packages.sh
install_or_update_ruby_gems.sh
"
Expand Down
Loading
Loading