Compare commits

..

No commits in common. "7be2918eadd5cca7a0a3209e9c6b9fa3d624802b" and "cf1f3a93b93cdd15a548dc3d73bb4ef84213df98" have entirely different histories.

4 changed files with 13 additions and 5 deletions

View file

@ -82,10 +82,10 @@
<!-- Set default monospace font --> <!-- Set default monospace font -->
<alias> <alias>
<family>monospace</family> <family>monospace</family>
<prefer><family>Fantasque Sans Mono</family></prefer> <prefer><family>IBM Plex Mono</family></prefer>
</alias> </alias>
<alias> <alias>
<family>Fantasque Sans Mono</family> <family>IBM Plex Mono</family>
<default><family>monospace</family></default> <default><family>monospace</family></default>
</alias> </alias>

View file

@ -5,7 +5,7 @@ riverctl background-color 0x$background
riverctl border-color-focused 0x$border_focused riverctl border-color-focused 0x$border_focused
riverctl border-color-unfocused 0x$border_unfocused riverctl border-color-unfocused 0x$border_unfocused
riverctl border-width 3 riverctl border-width 3
# riverctl spawn 'killall yambar ; yambar' riverctl spawn 'killall yambar ; yambar'
if test -n "$bg"; then if test -n "$bg"; then
riverctl spawn "killall swaybg ; swaybg --image $bg" riverctl spawn "killall swaybg ; swaybg --image $bg"

View file

@ -11,11 +11,11 @@ lines = 10000
hide-when-typing=yes hide-when-typing=yes
[main] [main]
font=monospace:size=11 font=monospace:size=10
line-height=16 line-height=16
vertical-letter-offset=2 vertical-letter-offset=2
pad=10x10 center pad=5x5 center
" > ~/.config/foot/foot.ini " > ~/.config/foot/foot.ini
rose_pine () { rose_pine () {

View file

@ -6,6 +6,14 @@ ulimit -c unlimited
export MESA_LOADER_DRIVER_OVERRIDE=crocus export MESA_LOADER_DRIVER_OVERRIDE=crocus
if test -z "${XDG_RUNTIME_DIR}"; then
export XDG_RUNTIME_DIR=/tmp/$(id -u)-runtime-dir
if ! test -d "${XDG_RUNTIME_DIR}"; then
mkdir "${XDG_RUNTIME_DIR}"
chmod 0700 "${XDG_RUNTIME_DIR}"
fi
fi
export PATH="$HOME/.local/bin:$PATH" export PATH="$HOME/.local/bin:$PATH"
export PATH="$HOME/go/bin:$PATH" export PATH="$HOME/go/bin:$PATH"
# export PATH="$HOME/.local/share/theme.sh:$PATH" # export PATH="$HOME/.local/share/theme.sh:$PATH"