commit 665ce9b924335072c4359d19e5094b19819d084e
parent 007093c0267adaf697633e8f7bd2f7063d693267
Author: regexghost <regexghost@protonmail.com>
Date: Tue, 12 May 2026 21:24:17 +0100
.profile updates, jwmrc and dmenu-programs added, added dunstrc
Diffstat:
9 files changed, 20 insertions(+), 5 deletions(-)
diff --git a/dotfiles/.bashrc b/dotfiles/.bashrc
@@ -350,6 +350,7 @@ alias psg='ps -aux | grep'
source "$HOME/.local/share/regexghost/terminal/autocompletion.bash"
source "$HOME/.local/share/regexghost/terminal/ls_aliases.bash"
[ -f ~/Programs/localStuff/aliases.sh ] && source ~/Programs/localStuff/aliases.sh
+[ -f ~/.profile ] && source ~/.profile
# Set variables
diff --git a/dotfiles/.config/btop/btop.conf b/dotfiles/.config/btop/btop.conf
@@ -178,7 +178,7 @@ disk_free_priv = False
show_io_stat = True
#* Toggles io mode for disks, showing big graphs for disk read/write speeds.
-io_mode = False
+io_mode = True
#* Set to True to show combined read/write io graphs in io mode.
io_graph_combined = False
diff --git a/dotfiles/.config/dunst/dunstrc b/dotfiles/.config/dunst/dunstrc
@@ -0,0 +1 @@
+#### Start Substitute - Colourscheme
diff --git a/dotfiles/.config/nano/nanorc b/dotfiles/.config/nano/nanorc
@@ -39,3 +39,5 @@ bind ^A mark main
bind ^J speller main
bind ^Z undo main
bind ^Y redo main
+bind ^/ comment main
+
diff --git a/dotfiles/.profile b/dotfiles/.profile
@@ -22,8 +22,8 @@ export NUGET_PACKAGES="$XDG_CACHE_HOME/NuGetPackages"
#export _JAVA_OPTIONS=-"Djava.util.prefs.userRoot=$XDG_CONFIG_HOME/java"
export EDITOR="nano"
-export VISUAL="vim"
+export VISUAL="nano"
#export PAGER="bat --wrap auto"
export BROWSER="netsurf-gtk"
-export PATH=$PATH:~/.local/bin:~/.npm/bin:~/.local/share/npm/bin:~/.local/share/go/bin
+export PATH=$PATH:~/.local/bin:~/.npm/bin:~/.local/share/npm/bin:~/.local/share/go/bin:~/.local/share/cargo/bin
export TERMINAL="kitty"
diff --git a/dotfiles/.xinitrc b/dotfiles/.xinitrc
@@ -1,13 +1,17 @@
# Notifications
dunst & disown
-# Increase key rate (delay = 250, repeat rate = 40)
-xset r rate 250 40
+# Increase key rate (delay = 200, repeat rate = 40)
+xset r rate 200 40
# No screen timeout/auto sleep
xset s off
xset dpms 0 0 0
+# Swap caps lock and escape
+setxkbmap -option caps:escape
+
+# lemonbar
(sleep 10 && ~/.local/share/regexghost/panel/lemonbar-runner.sh) & disown
# Window manger
diff --git a/jwm/.config/jwm/jwmrc b/jwm/.config/jwm/jwmrc
@@ -183,6 +183,7 @@
<Key mask="4" key="e">exec:st -t ranger -e ranger</Key>
<Key mask="4S" key="e">exec:xfiles</Key>
<Key mask="4" key="q">exec:~/.local/share/regexghost/wm-scripts/bookmarks.sh</Key>
+ <Key mask="4" key="f">exec:~/.local/share/regexghost/wm-scripts/dmenu-programs.sh</Key>
<!-- Mouse bindings -->
<!-- <Mouse context="root" button="4">ldesktop</Mouse> -->
diff --git a/wm-scripts/Makefile b/wm-scripts/Makefile
@@ -5,4 +5,5 @@ normal:
cp altgrtosuper.sh ${PREFIX}/altgrtosuper.sh
cp volume.sh ${PREFIX}/volume.sh
cp dmenu-runner.sh ${PREFIX}/dmenu-runner.sh
+ cp dmenu-programs.sh ${PREFIX}/dmenu-programs.sh
cp bookmarks.sh ${PREFIX}/bookmarks.sh
diff --git a/wm-scripts/dmenu-programs.sh b/wm-scripts/dmenu-programs.sh
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+DMENU_RUNNER="$XDG_DATA_HOME/regexghost/wm-scripts/dmenu-runner.sh"
+
+dmenu_path | "$DMENU_RUNNER" | ${SHELL:-"/bin/sh"} &