-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added gnome set once desktop to autostart on starup and script to load
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[Desktop Entry] | ||
Comment[en_US]=Loads GNOME settings at first start | ||
Comment=Loads GNOME settings at first start | ||
Exec=sh -c ~/gnome_set_once.sh | ||
GenericName[en_US]= | ||
GenericName= | ||
Icon=variety | ||
MimeType= | ||
Name[en_US]=Dconf Loader | ||
Name=Dconf Loader | ||
Path= | ||
StartupNotify=true | ||
Terminal=false | ||
TerminalOptions= | ||
Type=Application | ||
X-KDE-SubstituteUID=false | ||
X-KDE-Username= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/sh | ||
gsettings set org.gnome.desktop.interface color-scheme prefer-dark | ||
gsettings set org.gnome.Console use-system-font false | ||
gsettings set org.gnome.Console custom-font 'JetBrainsMonoNL Nerd Font 12' | ||
gsettings set org.gnome.Terminal.Legacy.Profile:/org/gnome/terminal/legacy/profiles:/:b1dcc9dd-5262-4d8d-a863-c897e6d979b9/ use-system-font false | ||
gsettings set org.gnome.Terminal.Legacy.Profile:/org/gnome/terminal/legacy/profiles:/:b1dcc9dd-5262-4d8d-a863-c897e6d979b9/ font 'JetBrainsMono Nerd Font 12' | ||
|
||
# Removing script and gnome_set_once.desktop | ||
rm ~/.config/autostart/gnome_set_once.desktop ~/gnome_set_once.sh |