summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2025-06-19 23:11:11 -0400
committerJack Jamison <jackqjamison@gmail.com>2025-06-19 23:11:11 -0400
commit5512ea5b4b4af8ce4aa0f79a2a0373ee335f287a (patch)
tree85471a91301e1215ae5bc583fae20f5557813da1
parent98e5f78fce77dbf3b484c8dde9ddadac8fdbcc1a (diff)
cleanup, qol, and input
-rw-r--r--.bash_profile12
-rw-r--r--.bashrc14
-rw-r--r--.config/hypr/hyprland.conf6
-rw-r--r--.zshrc2
4 files changed, 4 insertions, 30 deletions
diff --git a/.bash_profile b/.bash_profile
deleted file mode 100644
index ac1b5f6..0000000
--- a/.bash_profile
+++ /dev/null
@@ -1,12 +0,0 @@
-#
-# ~/.bash_profile
-#
-
-[[ -f ~/.bashrc ]] && . ~/.bashrc
-
-export PATH="$PATH:$HOME/dotfiles/scripts"
-export PATH="$PATH:$HOME/dotfiles/shortcuts"
-
-if [[ -t 0 && $(tty) == /dev/tty1 && ! $DISPLAY ]]; then
- exec dbus-launch --exit-with-session Hyprland
-fi
diff --git a/.bashrc b/.bashrc
deleted file mode 100644
index 7fa050a..0000000
--- a/.bashrc
+++ /dev/null
@@ -1,14 +0,0 @@
-#
-# ~/.bashrc
-#
-
-# If not running interactively, don't do anything
-[[ $- != *i* ]] && return
-
-alias ls='ls --color=auto'
-alias grep='grep --color=auto'
-alias project='. project'
-PS1='\[\033[1;1m\]\u\[\033[00m\]@\[\033[34m\]\h \[\033[32m\]\w \[\033[35m\]$(git-ps1)\[\033[00m\]\$ '
-
-export CC=/usr/bin/clang
-export CXX=/usr/bin/clang++
diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf
index 11d62b6..3872f47 100644
--- a/.config/hypr/hyprland.conf
+++ b/.config/hypr/hyprland.conf
@@ -12,17 +12,17 @@ exec-once = hyprctl dispatch workspace 1
input {
kb_layout = us
- kb_variant =
- kb_model =
kb_options = ctrl:nocaps
- kb_rules =
follow_mouse = 1
repeat_delay = 300
repeat_rate = 30
+ accel_profile = flat
+
touchpad {
+ scroll_factor = 0.2
natural_scroll = yes
disable_while_typing = false
}
diff --git a/.zshrc b/.zshrc
index 38520d8..064df51 100644
--- a/.zshrc
+++ b/.zshrc
@@ -20,7 +20,7 @@ alias grep='grep --color=auto'
# Prompt
set_prompt() {
- PROMPT="[%B%F{33}%n%f%b%F{15}@%f%F{81}%m%f] %F{47}%~ %F{105}$(git-ps1)%F{15}$ "
+ PROMPT="[%B%F{169}%n%f%b%F{15}@%f%F{81}%m%f] %F{47}%~ %F{105}$(git-ps1)%F{15}$ "
}
precmd_functions+=(set_prompt)