Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
333fred committed Jan 8, 2025
1 parent 2063ad8 commit c108aec
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ I override various regolith defaults in unsupported ways, so I maintain copies o
* `regolith-i3-rofication-ilia`
* `regolith-i3-swap-focus`

Due to https://github.com/regolith-linux/regolith-desktop/issues/1042, rename `/etc/environment` to `/etc/environment.back`. Hopefully I can remove this hack at some point in the future.

## Fonts

I use Hack as my main font, with Noto as the backup/CJK font. To install:
Expand Down
10 changes: 5 additions & 5 deletions profile/.profile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
# for ssh logins, install and configure the libpam-umask package.
#umask 022

# Copy from /etc/environment. See https://github.com/regolith-linux/regolith-desktop/issues/1042
if [ -f "/env/environment.back" ]; then
. "/env/environment.back"
fi

# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
Expand All @@ -28,11 +33,6 @@ fi

. "$HOME/.cargo/env"

if [ -d "$HOME/.dotnet" ]; then
export DOTNET_ROOT="$HOME/.dotnet"
PATH="$DOTNET_ROOT:$PATH"
fi

# Define a `.profile.local` file for setting local globals, such as `PRIMARY_MONITOR`` and `SECONDARY_MONITOR``
if [ -f "$HOME/.profile.local" ]; then
. "$HOME/.profile.local"
Expand Down
5 changes: 0 additions & 5 deletions zsh/.zprofile
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,3 @@ fi
export ANDROID_HOME=/home/fred/Android/Sdk
export ANDROID_SDK_ROOT=/home/fred/Android/Sdk
export PATH=/home/fred/Android/Sdk/cmdline-tools/latest/bin:/home/fred/Android/Sdk/platform-tools:$PATH

if [ -f "$HOME/.local/share/dnvm/env" ]; then
echo "Test"
. "$HOME/.local/share/dnvm/env"
fi

0 comments on commit c108aec

Please sign in to comment.