cleanup/style changes + tweaks + ideas

This commit is contained in:
atagen 2024-05-23 16:06:23 +10:00
parent c6231ec13a
commit 0c25328d6f
8 changed files with 71 additions and 87 deletions

View file

@ -13,7 +13,7 @@
},
{
"label" : "suspend",
"action" : "loginctl lock-session & systemctl suspend",
"action" : "systemctl suspend",
"text" : "Suspend",
"keybind" : "s"
},

View file

@ -19,5 +19,5 @@
icon = ../icons/fb_msg.png;
};
};
flatpaks = ["im.fluffychat.Fluffychat"];
flatpaks = ["im.riot.Riot"];
}

View file

@ -3,8 +3,8 @@
mpv
imv
strawberry
termusic
zathura
# libnotify
playerctl
];
}

View file

@ -23,7 +23,7 @@ in {
echo Checking for container existence..
if [[ $(${docker} inspect openwebui &> /dev/null; printf $?) -ne 0 ]]; then
echo Not found. Creating OpenWebUI/Ollama container..
${docker} create -e PORT=${toString port} --network host --gpus all -v ollama:/root/.ollama -v open-webui:/app/backend/data --name openwebui --restart always ghcr.io/open-webui/open-webui:ollama
${docker} create -e PORT=${toString port} --restart no --network host --gpus all -v ollama:/root/.ollama -v open-webui:/app/backend/data --name openwebui --restart always ghcr.io/open-webui/open-webui:ollama
fi
echo Check complete.
''}";