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",
"ktailctl": "flatpak run org.fkoehler.KTailctl",
"ulauncher": "ulauncher --no-window-shadow --hide-window",
"nemo-desktop": "nemo-desktop",
}
# Clean up dead sessions if any

View File

@ -9,7 +9,7 @@
};
theme = {
name = "Yaru";
name = "Yaru-dark";
};
cursorTheme = {
@ -57,14 +57,14 @@
"org/gnome/shell" = {
favorite-apps = [
"zen.desktop"
"org.gnome.Nautilus.desktop"
"nemo.desktop"
"com.spotify.Client.desktop"
"FFPWA-01JPMJ4K0S7JZDT2469CKNY49H.desktop"
"telegram-desktop_telegram-desktop.desktop"
"signal-desktop.desktop"
"whatsapp-desktop-client_whatsapp-desktop-client.desktop"
"vesktop.desktop"
"telegram-desktop_telegram-desktop.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/https" = [ "zen.desktop" ];
# default file manager
"inode/directory" = [ "nemo.desktop" ];
"application/x-gnome-saved-search" = [ "nemo.desktop" ];
# Geary
"x-scheme-handler/mailto" = [ "org.gnome.Geary.desktop" ];

View File

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

View File

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