Compare commits

...

3 Commits

Author SHA1 Message Date
0026a6d8dc feat: enable format on save and type for Nix files in VSCode settings
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 17s
Nix Format Check / check-format (push) Successful in 44s
Python Lint Check / check-python (push) Failing after 9s
2025-04-02 01:46:57 +02:00
dc0aae414e feat: update default theme to Yaru-dark and set Nemo as the default file manager 2025-04-02 01:46:52 +02:00
e9a558e3fc feat: add nemo-desktop to auto-start options 2025-04-02 01:46:42 +02:00
5 changed files with 22 additions and 12 deletions

View File

@ -57,6 +57,7 @@ def main():
"vesktop": "vesktop", "vesktop": "vesktop",
"ktailctl": "flatpak run org.fkoehler.KTailctl", "ktailctl": "flatpak run org.fkoehler.KTailctl",
"ulauncher": "ulauncher --no-window-shadow --hide-window", "ulauncher": "ulauncher --no-window-shadow --hide-window",
"nemo-desktop": "nemo-desktop",
} }
# Clean up dead sessions if any # Clean up dead sessions if any

View File

@ -9,7 +9,7 @@
}; };
theme = { theme = {
name = "Yaru"; name = "Yaru-dark";
}; };
cursorTheme = { cursorTheme = {
@ -57,14 +57,14 @@
"org/gnome/shell" = { "org/gnome/shell" = {
favorite-apps = [ favorite-apps = [
"zen.desktop" "zen.desktop"
"org.gnome.Nautilus.desktop" "nemo.desktop"
"com.spotify.Client.desktop" "com.spotify.Client.desktop"
"FFPWA-01JPMJ4K0S7JZDT2469CKNY49H.desktop" "signal-desktop.desktop"
"telegram-desktop_telegram-desktop.desktop"
"whatsapp-desktop-client_whatsapp-desktop-client.desktop" "whatsapp-desktop-client_whatsapp-desktop-client.desktop"
"vesktop.desktop" "telegram-desktop_telegram-desktop.desktop"
"code.desktop" "code.desktop"
"org.gnome.Ptyxis.desktop" "vesktop.desktop"
"scrcpy.desktop"
]; ];
}; };

View File

@ -10,6 +10,10 @@
"x-scheme-handler/http" = [ "zen.desktop" ]; "x-scheme-handler/http" = [ "zen.desktop" ];
"x-scheme-handler/https" = [ "zen.desktop" ]; "x-scheme-handler/https" = [ "zen.desktop" ];
# default file manager
"inode/directory" = [ "nemo.desktop" ];
"application/x-gnome-saved-search" = [ "nemo.desktop" ];
# Geary # Geary
"x-scheme-handler/mailto" = [ "org.gnome.Geary.desktop" ]; "x-scheme-handler/mailto" = [ "org.gnome.Geary.desktop" ];

View File

@ -86,22 +86,22 @@
enabled-extensions = [ enabled-extensions = [
"pano@elhan.io" "pano@elhan.io"
"tilingshell@ferrarodomenico.com" "tilingshell@ferrarodomenico.com"
"tiling-assistant@ubuntu.com"
"ubuntu-appindicators@ubuntu.com"
"launch-new-instance@gnome-shell-extensions.gcampax.github.com" "launch-new-instance@gnome-shell-extensions.gcampax.github.com"
"native-window-placement@gnome-shell-extensions.gcampax.github.com"
"user-theme@gnome-shell-extensions.gcampax.github.com"
"appindicatorsupport@rgcjonas.gmail.com" "appindicatorsupport@rgcjonas.gmail.com"
"arcmenu@arcmenu.com"
"blur-my-shell@aunetx" "blur-my-shell@aunetx"
"burn-my-windows@schneegans.github.com" "burn-my-windows@schneegans.github.com"
"gsconnect@andyholmes.github.io" "dash-to-panel@jderose9.github.com"
"gtk4-ding@smedius.gitlab.com"
"just-perfection-desktop@just-perfection" "just-perfection-desktop@just-perfection"
"kimpanel@kde.org" "kimpanel@kde.org"
"lilypad@shendrew.github.io" "lilypad@shendrew.github.io"
"native-window-placement@gnome-shell-extensions.gcampax.github.com"
"smile-extension@mijorus.it" "smile-extension@mijorus.it"
"tailscale@joaophi.github.com" "tailscale@joaophi.github.com"
"user-theme@gnome-shell-extensions.gcampax.github.com"
"weatheroclock@CleoMenezesJr.github.io" "weatheroclock@CleoMenezesJr.github.io"
"dash-to-panel@jderose9.github.com"
"arcmenu@arcmenu.com"
]; ];
}; };

View File

@ -22,6 +22,11 @@
"editor.renderWhitespace": "all" "editor.renderWhitespace": "all"
}, },
"[nix]": {
"editor.formatOnSave": true,
"editor.formatOnType": true
},
"[dart]": { "[dart]": {
// Automatically format code on save and during typing of certain characters // Automatically format code on save and during typing of certain characters
// (like `;` and `}`). // (like `;` and `}`).