diff options
| author | Sam Nystrom <sam@samnystrom.dev> | 2023-07-19 11:50:49 -0400 |
|---|---|---|
| committer | Sam Nystrom <sam@samnystrom.dev> | 2023-07-19 11:52:52 -0400 |
| commit | 831fd3a21441c57dd355fe76713fbeb1106c3dd8 (patch) | |
| tree | 372e59fff4a69927f28d03279fac9fe986cbf274 | |
| parent | e976d9f0d8138a199a182b8266979338c23711d2 (diff) | |
Set GTK theme
| -rw-r--r-- | .profile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ # Add PATH entries, we can't use external commands yet in case PATH is empty -for p in /bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/local/bin "$HOME"/.local/bin "$HOME"/.cargo/bin "$HOME"/bin; do +for p in /bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/local/sbin "$HOME"/.local/bin "$HOME"/.cargo/bin "$HOME"/bin; do case ":$PATH:" in *:"$p":*) ;; *) export PATH="$PATH:$p" ;; @@ -7,13 +7,14 @@ for p in /bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/local/bin "$HOME"/.lo done # Create a tmpdir for XDG_RUNTIME_DIR if it is not set -[ -z "$XDG_RUNTIME_DIR" ] && export XDG_RUNTIME_DIR=$(mktemp -d) +[ "$XDG_RUNTIME_DIR" ] || export XDG_RUNTIME_DIR=$(mktemp -d) # Set environment variables export EDITOR=nvim export PAGER=less export TERMINAL=foot export BROWSER=firefox +export GTK_THEME=Catppuccin-Macchiato-Standard-Mauve-Dark export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR"/hissh-agent export DBUS_SESSION_BUS_ADDRESS=unix:path="$XDG_RUNTIME_DIR"/bus export FZF_DEFAULT_OPTS=" \ |
