Updated config
This commit is contained in:
parent
dea8315917
commit
6d7312c465
6 changed files with 17 additions and 4 deletions
|
@ -102,7 +102,7 @@ alias tl "tmux ls"
|
|||
alias tk "tmux kill-server"
|
||||
|
||||
# ...
|
||||
alias ai "sudo systemctl start ollama && sleep 1 && ollama run gemma3"
|
||||
alias ai "sudo systemctl start ollama && sleep 1 && ollama run gemma3:27b"
|
||||
alias align "column -t -o ' '"
|
||||
alias c "rg --files | xargs fnl --remove"
|
||||
alias cfg "config"
|
||||
|
|
|
@ -21,4 +21,16 @@ for jpg in (find $argv[1] -type f -name '*.jpg')
|
|||
echo Renaming JSON $json to "$avif.JSON"
|
||||
mv $json "$avif.JSON"
|
||||
end
|
||||
end
|
||||
|
||||
for png in (find $argv[1] -type f -name '*.png')
|
||||
set avif (string replace -r '\.png$' '.avif' $png)
|
||||
|
||||
if test -f $avif
|
||||
echo Skip $avif
|
||||
continue
|
||||
end
|
||||
|
||||
echo Converting $png to $avif
|
||||
avifenc $png $avif
|
||||
end
|
|
@ -1,4 +1,5 @@
|
|||
# Qt
|
||||
env = QSG_RHI_BACKEND,vulkan
|
||||
env = QT_QPA_PLATFORM,wayland
|
||||
env = QT_QPA_PLATFORMTHEME,qt6ct
|
||||
env = QT_WAYLAND_DISABLE_WINDOWDECORATION,1
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
# Apps
|
||||
$browser = firefox
|
||||
$files = nautilus
|
||||
$logout = wlogout
|
||||
$lockscreen = swaylock
|
||||
$menu = fuzzel
|
||||
|
@ -13,7 +14,6 @@ $wallpaper = waypaper
|
|||
$calendar = $terminal -e calcurse
|
||||
$editor = $terminal -e nvim
|
||||
$email = $terminal -e aerc
|
||||
$files = $terminal -e nnn
|
||||
$center = [float;size 960 540;center]
|
||||
$floating = $center $terminal
|
||||
$systeminfo = $floating --hold -e fastfetch
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue