diff options
| author | Spacedio <spacedio@thernusen.net> | 2026-06-08 21:54:02 -0400 |
|---|---|---|
| committer | Spacedio <spacedio@thernusen.net> | 2026-06-08 21:54:02 -0400 |
| commit | 8e21a3937200a75de54c2536493ce0d350bfed46 (patch) | |
| tree | 6b92cad29e86d81080f187b7c6f0010188dae622 | |
| parent | 2586197af1a1c4b419e6d3a7786128c6091ee939 (diff) | |
| download | dotfiles-8e21a3937200a75de54c2536493ce0d350bfed46.tar.gz | |
Rearranging some environment variables exports and adding default branch to git config.
| -rw-r--r-- | bash/.bashrc | 2 | ||||
| -rw-r--r-- | git/.gitconfig | 3 | ||||
| -rw-r--r-- | x11/.xprofile | 5 |
3 files changed, 7 insertions, 3 deletions
diff --git a/bash/.bashrc b/bash/.bashrc index c60ac13..5882747 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -19,8 +19,6 @@ alias ssh-eligor='ssh closetcat@eligor.home.arpa' #EXPORTS export PATH="$HOME/.local/bin:$PATH" export EDITOR='nvim' -export GTK_THEME=Adwaita:dark -export ADW_DISABLE_PORTAL=1 #OTHER PS1='[\u@\h \W]\$ ' diff --git a/git/.gitconfig b/git/.gitconfig index 8dd07ad..56fd311 100644 --- a/git/.gitconfig +++ b/git/.gitconfig @@ -1,3 +1,6 @@ [user] email = spacedio@thernusen.net name = Spacedio + +[init] + defaultBranch = master
\ No newline at end of file diff --git a/x11/.xprofile b/x11/.xprofile index f4af368..a54e2c5 100644 --- a/x11/.xprofile +++ b/x11/.xprofile @@ -5,8 +5,11 @@ xrandr --output eDP-1 --auto #export GDK_SCALE=2 #export GDK_DPI_SCALE=0.5 export GDK_DPI_SCALE=1 +export GTK_THEME=Adwaita:dark export QT_AUTO_SCREEN_SCALE_FACTOR=1 export QT_ENABLE_HIGHDPI_SCALING=1 -export _JAVA_OPTIONS='-Dsun.java2d.uiScale=2'
\ No newline at end of file +export ADW_DISABLE_PORTAL=1 + +export _JAVA_OPTIONS='-Dsun.java2d.uiScale=2' |
