Compare commits

..

4 Commits

Author SHA1 Message Date
8799cc72b8 vscode default to dark theme
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 36s
Nix Format Check / check-format (push) Failing after 1m35s
Python Lint Check / check-python (push) Failing after 21s
2025-06-19 10:33:37 +02:00
2fa8a519bf autostart jetbrains toolbox 2025-06-19 10:33:23 +02:00
7f4e308109 updates to zed settings 2025-06-19 10:32:59 +02:00
b2742be1bd adds seadrive to startup 2025-06-19 10:32:28 +02:00
6 changed files with 79 additions and 13 deletions

View File

View File

@@ -0,0 +1,56 @@
[Desktop Entry]
Name=SeaDrive
Comment=Seafile drive client
TryExec=/home/menno/Applications/SeaDrive-x86_64-3.0.14_c106ef6e87ab7c4dea949b2b4eb528b7.AppImage
Exec=/home/menno/.config/autostart/appimagekit_eb407e60ea8d3b2b80784ccca36a66be-SeaDrive.ignition_delay.sh
Icon=appimagekit_eb407e60ea8d3b2b80784ccca36a66be_seadrive
Type=Application
Categories=Network;FileTransfer;
X-AppImage-Old-Icon=seadrive
X-AppImage-Identifier=eb407e60ea8d3b2b80784ccca36a66be
Actions=AppImageLauncher-Remove-AppImage;AppImageLauncher-Update-AppImage;
X-AppImageLauncher-Version=3.0.0-alpha-4 (git commit 36951ec), built on 2025-02-13 16:55:10 UTC
Hidden=false
Terminal=false
[Desktop Action AppImageLauncher-Remove-AppImage]
Name=Delete this AppImage
Icon=AppImageLauncher
Exec=/opt/appimagelauncher.AppDir/usr/lib/x86_64-linux-gnu/appimagelauncher/remove "/home/menno/Applications/SeaDrive-x86_64-3.0.14_c106ef6e87ab7c4dea949b2b4eb528b7.AppImage"
Name[ast]=Desaniciar AppImage del sistema
Name[cs]=Odebrat AppImage ze systému
Name[de]=Dieses AppImage löschen
Name[en]=Delete this AppImage
Name[es]=Eliminar Appimage del Sistema
Name[fr]=Supprimer cette AppImage
Name[it]=Rimuovi questa AppImage
Name[ko]=이 AppImage 삭제
Name[nb_NO]=Slett AppImage
Name[nl]=AppImage deïnstalleren
Name[pl]=Usuń AppImage z systemu
Name[pt]=Remover AppImage do sistema
Name[pt_BR]=Remover AppImage do sistema
Name[ru]=Удалить AppImage
Name[tr]=Bu AppImage uygulamasını sil
Name[zh_Hans]=删除此 AppImage
[Desktop Action AppImageLauncher-Update-AppImage]
Name=Update this AppImage
Icon=AppImageLauncher
Exec=/opt/appimagelauncher.AppDir/usr/lib/x86_64-linux-gnu/appimagelauncher/update "/home/menno/Applications/SeaDrive-x86_64-3.0.14_c106ef6e87ab7c4dea949b2b4eb528b7.AppImage"
Name[ast]=Anovar AppImage
Name[cs]=Aktualizovat AppImage
Name[de]=Dieses AppImage aktualisieren
Name[en]=Update this AppImage
Name[es]=Actualizar Appimage
Name[fr]=Mettre à jour l'AppImage
Name[it]=Aggiorna questa AppImage
Name[ko]=이 AppImage 업데이트
Name[nb_NO]=Oppdater AppImage
Name[nl]=AppImage bijwerken
Name[pl]=Uaktualnij AppImage
Name[pt]=Atualizar AppImage
Name[pt_BR]=Atualizar AppImage
Name[ru]=Обновить AppImage
Name[tr]=Bu AppImage uygulamasını güncelle
Name[zh_Hans]=更新此 AppImage

View File

@@ -0,0 +1,2 @@
#!/usr/bin/env sh
sleep 10 && /home/menno/Applications/SeaDrive-x86_64-3.0.14_c106ef6e87ab7c4dea949b2b4eb528b7.AppImage

View File

@@ -1,6 +1,6 @@
[Desktop Entry]
Icon=/home/menno/.local/share/JetBrains/Toolbox/toolbox.svg
Exec=/home/menno/.local/share/JetBrains/Toolbox/bin/jetbrains-toolbox --minimize
Icon=/home/menno/Applications/jetbrains-toolbox-2.6.3.43718/bin/toolbox.svg
Exec=/home/menno/Applications/jetbrains-toolbox-2.6.3.43718/bin/jetbrains-toolbox --minimize
Version=1.0
Type=Application
Categories=Development

View File

@@ -73,7 +73,7 @@
"window.confirmSaveUntitledWorkspace": false,
"git.openRepositoryInParentFolders": "never",
"debug.toolBarLocation": "commandCenter",
"workbench.colorTheme": "Default Light+",
"workbench.colorTheme": "Default Dark+",
"ansible.lightspeed.enabled": false,
"ansible.lightspeed.suggestions.enabled": false
}

View File

@@ -10,13 +10,25 @@
// #############################################
// ## Theming ##
// #############################################
"icon_theme": "Catppuccin Frappé",
"ssh_connections": [
{
"host": "salt.dev",
"username": "salt",
"projects": [
{
"paths": ["/home/salt/releases/docker-updates"]
}
]
}
],
"icon_theme": "VSCode Icons (Dark)",
"ui_font_size": 16,
"buffer_font_size": 16,
"minimap": {
"show": "auto",
"show": "always",
"thumb": "hover",
"current_line_highlight": "all"
"current_line_highlight": "all",
"display_in": "active_editor"
},
"theme": {
"mode": "system",
@@ -46,21 +58,17 @@
"on_last_window_closed": "quit_app",
"ensure_final_newline_on_save": true,
"format_on_save": "prettier",
// Example on language specific options:
// "languages": {
// "Shell Script": {
// "format_on_save": "off"
// }
// },
"tab_size": 2,
// #############################################
// ## AI Stuff ##
// #############################################
"agent": {
"default_profile": "write",
"model_parameters": [],
"default_model": {
"provider": "copilot_chat",
"model": "claude-3.7-sonnet"
"model": "claude-sonnet-4"
},
"version": "2"
},