delete unused configs

This commit is contained in:
William Ball 2026-04-08 18:46:52 -04:00
parent 6ae61cfe9c
commit 37f8049e1e
Signed by: wball
SSH key fingerprint: SHA256:3K3IvjUp1U5HwsIRYy/vosnG8l/A84LPUSAKQ6oCGKI
14 changed files with 0 additions and 2729 deletions

View file

@ -1,21 +0,0 @@
font=Iosevka Nerd Font:size=10
dpi-aware=yes
width=30
[colors]
background=1e1e2eff
text=cdd6f4ff
match=f5c2e7ff
selection=45475aff
selection-text=cdd6f4ff
border=f5c2e7ff
[border]
width=2
radius=0
[key-bindings]
next=none
next-with-wrap=Control+n
prev=none
prev-with-wrap=Control+p

View file

@ -1,80 +0,0 @@
# vim:ft=kitty
## name: Catppuccin-Mocha
## author: Pocco81 (https://github.com/Pocco81)
## license: MIT
## upstream: https://github.com/catppuccin/kitty/blob/main/mocha.conf
## blurb: Soothing pastel theme for the high-spirited!
# The basic colors
foreground #CDD6F4
background #1E1E2E
selection_foreground #1E1E2E
selection_background #F5E0DC
# Cursor colors
cursor #F5E0DC
cursor_text_color #1E1E2E
# URL underline color when hovering with mouse
url_color #F5E0DC
# Kitty window border colors
active_border_color #B4BEFE
inactive_border_color #6C7086
bell_border_color #F9E2AF
# OS Window titlebar colors
wayland_titlebar_color system
macos_titlebar_color system
# Tab bar colors
active_tab_foreground #11111B
active_tab_background #CBA6F7
inactive_tab_foreground #CDD6F4
inactive_tab_background #181825
tab_bar_background #11111B
# Colors for marks (marked text in the terminal)
mark1_foreground #1E1E2E
mark1_background #B4BEFE
mark2_foreground #1E1E2E
mark2_background #CBA6F7
mark3_foreground #1E1E2E
mark3_background #74C7EC
# The 16 terminal colors
# black
color0 #45475A
color8 #585B70
# red
color1 #F38BA8
color9 #F38BA8
# green
color2 #A6E3A1
color10 #A6E3A1
# yellow
color3 #F9E2AF
color11 #F9E2AF
# blue
color4 #89B4FA
color12 #89B4FA
# magenta
color5 #F5C2E7
color13 #F5C2E7
# cyan
color6 #94E2D5
color14 #94E2D5
# white
color7 #BAC2DE
color15 #A6ADC8

View file

@ -1,12 +0,0 @@
font_family Iosevka Nerd Font
font_size 15.0
window_padding_width 5
enable_audio_bell no
visual_bell_duration 0.0
# BEGIN_KITTY_THEME
# Catppuccin-Mocha
include current-theme.conf
# END_KITTY_THEME

View file

@ -1,15 +0,0 @@
#!/bin/sh
case "$1" in
--connect)
notify-send 'bluetooth' 'Connecting to Headphones'
bluetoothctl connect "88:C9:E8:D7:60:85"
;;
--disconnect)
notify-send 'bluetooth' 'Disconnecting Headphones'
bluetoothctl disconnect "88:C9:E8:D7:60:85"
;;
*)
exit 1
;;
esac

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,20 +0,0 @@
#!/bin/sh
wobd
pgrep swaybg || swaybg -i ~/.config/kwm/wallpaper.jpg &
pgrep dunst || dunst &
foot --server & # TODO: figure out systemd service
emacs --daemon &
# swayidle
pgrep swayidle || swayidle -w \
timeout 300 '$HOME/.config/kwm/timeout.sh' \
before-sleep 'swaylock -f -c 000000' &
# gnome-keyring (needed for nextcloud to remember login)
dbus-update-activation-environment --all
gnome-keyring-daemon --start --components=secrets
nextcloud &

View file

@ -1,2 +0,0 @@
#!/bin/sh
echo "$1" > ~/.config/pianobar/ctl

View file

@ -1,3 +0,0 @@
#!/bin/sh
echo -e "performance\nbalanced\npower-saver" | bemenu --center --list 3 -p "Power Mode" --border 2 --bdr "#f6c2e7" -W 0.5 | xargs tlpctl

View file

@ -1,17 +0,0 @@
#!/bin/sh
if [ $1 = "clip" ]; then
if grim -g "$(slurp)" - | wl-copy; then
notify-send "screenshot" "Saved to clipboard"
else
notify-send "screenshot" "Canceled"
fi
else
filename="$HOME/Downloads/$(echo '' | bemenu --ifne -p "Enter filename:")"
filename_ext="${filename%.png}.png"
if grim -g "$(slurp)" "$filename_ext"; then
notify-send "screenshot" "Saved as $filename_ext"
else
notify-send "screenshot" "Canceled"
fi
fi

View file

@ -1,15 +0,0 @@
#!/bin/sh
caffeine_file=$HOME/.cache/idle
if [[ ! -f $caffeine_file ]] then
echo 0 > $caffeine_file
fi
caffeine=$(<$HOME/.cache/idle)
if [[ $caffeine -eq 0 ]] then
swaylock -f -c 000000
else
notify-send 'Caffeine' 'Not sleeping'
fi

View file

@ -1,17 +0,0 @@
#!/bin/sh
caffeine_file=$HOME/.cache/idle
if [[ ! -f $caffeine_file ]] then
echo 0 > $caffeine_file
fi
caffeine=$(<$HOME/.cache/idle)
if [[ $caffeine -eq 0 ]] then
echo 1 > $caffeine_file
notify-send 'Caffeine' 'Caffeine Enabled'
else
echo 0 > $caffeine_file
notify-send 'Caffeine' 'Caffeine Disabled'
fi

Binary file not shown.

Before

Width:  |  Height:  |  Size: 695 KiB

View file

@ -1,15 +0,0 @@
local wezterm = require 'wezterm'
local config = wezterm.config_builder()
config.color_scheme = 'Catppuccin Mocha'
config.font = wezterm.font('Iosevka Nerd Font Mono')
config.font_size = 15.0
config.default_cursor_style = 'SteadyBar'
config.hide_tab_bar_if_only_one_tab = true
config.use_fancy_tab_bar = false
config.tab_bar_at_bottom = true
return config