update from borges

This commit is contained in:
Rudis Muiznieks 2023-06-19 15:46:25 -05:00
parent 5927fc0d65
commit f776d5a2a1
Signed by: rudism
GPG Key ID: CABF2F86EF7884F9
15 changed files with 104 additions and 5 deletions

View File

@ -0,0 +1,78 @@
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
<fontconfig>
<alias>
<family>monospace</family>
<prefer>
<family>Drafting* Mono</family>
<family>Symbols Nerd Font</family>
<family>Unifont</family>
</prefer>
</alias>
<alias>
<family>sans-serif</family>
<prefer>
<family>Graphik</family>
<family>Unifont</family>
</prefer>
</alias>
<alias>
<family>Helvetica</family>
<prefer>
<family>Graphik</family>
</prefer>
</alias>
<alias>
<family>Times</family>
<prefer>
<family>Merriweather</family>
</prefer>
</alias>
<alias>
<family>Georgia</family>
<prefer>
<family>Merriweather</family>
</prefer>
</alias>
<alias>
<family>Charter</family>
<prefer>
<family>Merriweather</family>
</prefer>
</alias>
<alias>
<family>serif</family>
<prefer>
<family>Merriweather</family>
<family>Unifont</family>
</prefer>
</alias>
<match target="font">
<test name="spacing" compare="eq">
<const>mono</const>
</test>
<edit name="embolden" mode="assign">
<bool>false</bool>
</edit>
</match>
<dir>~/.fonts</dir>
<match target="font">
<edit mode="assign" name="rgba">
<const>rgb</const>
</edit>
</match>
<match target="font">
<edit mode="assign" name="hinting">
<bool>true</bool>
</edit>
</match>
<match target="font">
<edit mode="assign" name="hintstyle">
<const>hintslight</const>
</edit>
</match>
<match target="font">
<edit mode="assign" name="antialias">
<bool>true</bool>
</edit>
</match>
</fontconfig>

Binary file not shown.

View File

@ -1,5 +1,4 @@
#!/bin/sh
gpg --decrypt fonts.txz.gpg | tar xJvC ~/.local/share
cp -v merriweather/* ~/.local/share/fonts/
fc-cache rebuild

View File

@ -13,4 +13,6 @@
[init]
defaultBranch = main
[push]
autoSetupRemote = true
autoSetupRemote = true
[core]
editor = nvim

5
kde/logout.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
killall pipewire || true;
killall pipewire-pulse || true;
killall wireplumber || true;

View File

@ -0,0 +1 @@
export DOTNET_ROOT=$HOME/dotnet

View File

@ -1 +1 @@
export PATH=$HOME/.local/bin:$HOME/go/bin:$PATH
export PATH=$HOME/.local/bin:$HOME/dotnet:$HOME/.dotnet/tools:$HOME/go/bin:$PATH

View File

@ -21,5 +21,6 @@
{ "title": "Net Authority", "url": "https://netauthority.org/", "icon": "mastodon" },
{ "title": "Waking Up", "url": "https://app.wakingup.com/", "icon": "flower1" },
{ "title": "Light Phone", "url": "https://dashboard.thelightphone.com/devices/4234ac50-9d96-433c-9f25-c8d3ff15c7c5", "icon": "phone" },
{ "title": "Letterboxd", "url": "https://letterboxd.com/", "icon": "camera-reels" }
{ "title": "Letterboxd", "url": "https://letterboxd.com/", "icon": "camera-reels" },
{ "title": "Geoguessr", "url": "https://geoguessr.com/", "icon": "geo-fill" }
]

View File

@ -135,7 +135,7 @@ lsp.omnisharp.setup {
end
return util.root_pattern("*.sln")(file) or util.root_pattern("*.csproj")(file) or util.root_pattern("omnisharp.json")(file)
end,
cmd = { "/usr/bin/omnisharp" }, --"--languageserver" , "--hostPID", tostring(pid) },
cmd = { "/home/rudism/.local/share/omnisharp/OmniSharp" }, --"--languageserver" , "--hostPID", tostring(pid) },
}
lsp.tsserver.setup {
capabilities = lspcap,

View File

@ -4,6 +4,7 @@
hash -d r2=/mnt/external/rudism
hash -d api=/home/rudism/mri/cosmic/api
hash -d gql=/home/rudism/mri/cosmic/graphql-server
hash -d as2=/home/rudism/mri/appdat/as2
hash -d a=/mnt/agrajag
hash -d b=/mnt/beeblebrox
@ -14,3 +15,9 @@ alias webcamfix='sudo modprobe v4l2loopback devices=1 video_nr=9 card_label=Virt
alias fiio='sudo mount -o uid=rudism,gid=rudism UUID=3317-74BF /mnt/fiio'
alias syncmusic='rsync -e ssh -av --size-only --ignore-times --no-perms --no-owner --no-group /mnt/agrajag/music/ /mnt/fiio/MUSIC'
alias watchsync='watch -d grep -e Dirty: -e Writeback: /proc/meminfo'
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/home/rudism/.local/share/google-cloud-sdk/path.zsh.inc' ]; then . '/home/rudism/.local/share/google-cloud-sdk/path.zsh.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '/home/rudism/.local/share/google-cloud-sdk/completion.zsh.inc' ]; then . '/home/rudism/.local/share/google-cloud-sdk/completion.zsh.inc'; fi

View File

@ -38,3 +38,9 @@ bindkey "^[[3~" delete-char
if [ -f ~/.zalias ]; then
source ~/.zalias
fi
if [ -d "$HOME/.config/plasma-workspace/env" ]; then
for sh in $HOME/.config/plasma-workspace/env/*.sh; do
source "$sh"
done
fi