1
This commit is contained in:
Evan Pratten 2023-11-09 11:47:47 -05:00
parent 66f6195ee5
commit 371d753f16
32 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,9 @@
#! /bin/sh
set -e
# Get the path to this script
SCRIPT_PATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
# Check if dconf is available
if ! command -v dconf >/dev/null 2>&1; then
echo "dconf is not installed, skipping GNOME configuration"
@ -9,8 +12,4 @@ fi
# Configure gnome-terminal
echo "Writing gnome-terminal settings..."
dconf load "/org/gnome/terminal/" < configs/gnome/terminal/terminal.dconf
# Configure GNOME itself
echo "Writing GNOME settings..."
sh ./configs/gnome/desktop-settings.sh
dconf load "/org/gnome/terminal/" < $SCRIPT_PATH/terminal/terminal.dconf

View File

@ -9,7 +9,7 @@ export EWCONFIG_ROOT="$HOME/.config/ewconfig"
# I always want my ~/bin to be in my PATH
export PATH="$HOME/bin:$PATH"
export PATH="$EWCONFIG_ROOT/configs/scripts:$PATH"
export PATH="$EWCONFIG_ROOT/scripts:$PATH"
export PATH="$HOME/.local/bin:$PATH"
# A basic prompt to display user@host dir sign

View File

@ -18,7 +18,7 @@ fi
# I always want my ~/bin to be in my PATH
export PATH="$HOME/bin:$PATH"
export PATH="$EWCONFIG_ROOT/configs/scripts:$PATH"
export PATH="$EWCONFIG_ROOT/scripts:$PATH"
export PATH="$HOME/.local/bin:$PATH"
# Configure a sane default editor

View File

@ -131,7 +131,8 @@ if [ -d ~/.config/blender/3.6 ]; then ln -sf $EWCONFIG_ROOT/configs/blender/3.x/
# -- Finalization --
# On systems that need it, configure Gnome
sh ./helpers/configure-gnome.sh
sh ./configs/gnome/gnome-terminal-settings.sh
sh ./configs/gnome/desktop-settings.sh
# Attempt to force a termux settings reload on Android devices
termux-reload-settings || true