commit b80a314f4957d3f094dbfc687228c3cdacb28fce Author: Caleb Burke Date: Mon Jul 13 19:42:03 2026 -0700 first commit diff --git a/.Xresources b/.Xresources new file mode 100644 index 0000000..f441e81 --- /dev/null +++ b/.Xresources @@ -0,0 +1,40 @@ +! special +*.foreground: #ffffff +*.background: #000000 +*.cursorColor: #ffffff + +! black +*.color0: #252525 +*.color8: #454545 + +! red +*.color1: #ff9f95 +*.color9: #ff8d80 + +! green +*.color2: #a6e22e +*.color10: #b6e354 + +! yellow +*.color3: #fd971f +*.color11: #fd971f + +! blue +*.color4: #435e87 +*.color12: #587aa4 + +! magenta +*.color5: #789ec6 +*.color13: #46a4ff + +! cyan +*.color6: #5e7175 +*.color14: #a3babf + +! white +*.color7: #dbdcdc +*.color15: #fdfdfd + +Sxiv.background: #000000 +Sxiv.foreground: #00C0FF + diff --git a/.bashrc b/.bashrc new file mode 100644 index 0000000..2311c24 --- /dev/null +++ b/.bashrc @@ -0,0 +1,23 @@ +# +# ~/.bashrc +# +# !WARN This file depends on https://gitea.burke.host/burkkyy/.config.git + +# Set the terminal transparency for st +[[ "$(cat /proc/$PPID/comm)" = "st" ]] && transset-df "0.90" --id "$WINDOWID" > /dev/null + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +# Load environment variables +[ -f ~/.config/bash/env.sh ] && . ~/.config/bash/env.sh + +# Load bash aliases +[ -f ~/.config/bash/aliases.sh ] && . ~/.config/bash/aliases.sh + +# Load shell key binds +[ -f ~/.config/bash/binds.sh ] && . ~/.config/bash/binds.sh + +# Set bash prompt +[ -f ~/.config/bash/prompt.sh ] && PS1="$(~/.config/bash/prompt.sh) " || PS1="[\u@\h \W]\$ " + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/.xinitrc b/.xinitrc new file mode 100644 index 0000000..4fec8bc --- /dev/null +++ b/.xinitrc @@ -0,0 +1,21 @@ +# +# ~/.xinitrc +# + +xrandr --output DP-2 --auto --mode 1920x1080 --rate 144.00 +xrandr --output HDMI-0 --auto --mode 1920x1080 --rate 100.00 --right-of DP-2 + +xrdb -load ~/.Xresources +xmodmap ~/.Xmodmap + +# feh --no-feh --bg-fill /home/caleb/pictures/wallpapers/85942af486eb79118467/low-poly-texture-19.png + +dunst & +xcompmgr -n & +dwmbar_loop & + +if command -v dbus-update-activation-environment >/dev/null 2>&1; then + dbus-update-activation-environment --systemd DISPLAY XAUTHORITY XDG_CURRENT_DESKTOP=dwm +fi + +exec dwm diff --git a/README.md b/README.md new file mode 100644 index 0000000..1bc76c3 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# `~/` dotfiles + +Collection of dotfiles in my home directory