-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tstamp and color_codes, gnome tweaks
- Loading branch information
1 parent
91336b6
commit 12aeee8
Showing
2 changed files
with
71 additions
and
7 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
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 |
---|---|---|
|
@@ -750,6 +750,7 @@ case "$response" in | |
nextcloud-client \ | ||
p7zip \ | ||
qalculate-gtk \ | ||
touchegg \ | ||
veracrypt \ | ||
zathura \ | ||
zathura-pdf-mupdf \ | ||
|
@@ -789,6 +790,7 @@ case "$response" in | |
nextcloud-desktop \ | ||
p7zip-full \ | ||
qalculate-gtk \ | ||
touchegg \ | ||
unrar \ | ||
zathura \ | ||
-y | ||
|
@@ -807,6 +809,7 @@ case "$response" in | |
noto-fonts-emoji \ | ||
p7zip \ | ||
qalculate-gtk \ | ||
touchegg \ | ||
unrar \ | ||
veracrypt \ | ||
zathura \ | ||
|
@@ -829,6 +832,7 @@ case "$response" in | |
nextcloudclient \ | ||
noto-emoji \ | ||
qalculate-gtk \ | ||
touchegg \ | ||
unrar \ | ||
veracrypt \ | ||
yt-dlp \ | ||
|
@@ -872,6 +876,39 @@ case "$response" in | |
;; | ||
esac | ||
|
||
read -r -p "Would you like to setup Gnome? [y/N] " response | ||
case "$response" in | ||
[yY][eE][sS]|[yY]) | ||
# Set fonts for Gnome. | ||
if [[ "$XDG_CURRENT_DESKTOP" == "GNOME" ]]; then | ||
gsettings set org.gnome.desktop.interface font-name 'FreeSans 11' | ||
gsettings set org.gnome.desktop.interface document-font-name 'FreeSans 11' | ||
gsettings set org.gnome.desktop.interface monospace-font-name 'Hack Nerd Font Mono 11' | ||
|
||
if [ -s /usr/share/applications/brave.desktop ]; then | ||
xdg-settings set default-web-browser brave.desktop | ||
elif [ -s /usr/share/applications/brave-browser.desktop ]; then | ||
xdg-settings set default-web-browser brave-browser.desktop | ||
fi | ||
|
||
# TODO: Install extensions | ||
#[email protected] | ||
#blur-my-shell@aunetx | ||
#[email protected] | ||
#[email protected] | ||
#[email protected] | ||
#[email protected] | ||
#[email protected] | ||
#[email protected] | ||
#[email protected] | ||
#[email protected] | ||
#[email protected] | ||
fi | ||
;; | ||
*) | ||
echo "Skipping font installation" | ||
;; | ||
esac | ||
|
||
read -r -p "Would you like to attempt an install of Suckless Terminal (st)? [y/N] " response | ||
case "$response" in | ||
|
@@ -1210,12 +1247,6 @@ case "$response" in | |
gsettings set org.gnome.desktop.interface document-font-name 'FreeSans 11' | ||
gsettings set org.gnome.desktop.interface monospace-font-name 'Hack Nerd Font Mono 11' | ||
fi | ||
|
||
if [ -s /usr/share/applications/brave.desktop ]; then | ||
xdg-settings set default-web-browser brave.desktop | ||
elif [ -s /usr/share/applications/brave-browser.desktop ]; then | ||
xdg-settings set default-web-browser brave-browser.desktop | ||
fi | ||
;; | ||
*) | ||
echo "Skipping font installation" | ||
|