mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-09 14:00:47 -05:00
Compare commits
3 commits
fa2b37ce70
...
d46f86661a
Author | SHA1 | Date | |
---|---|---|---|
d46f86661a | |||
124223b2ed | |||
0a34530107 |
6 changed files with 45 additions and 13 deletions
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
userresources=$HOME/.Xresources
|
userresources="$XDG_CONFIG_HOME"/X11/Xresources
|
||||||
usermodmap=$HOME/.Xmodmap
|
usermodmap="$XDG_CONFIG_HOME"/X11/Xmodmap
|
||||||
sysresources=/etc/X11/xinit/Xresources
|
sysresources=/etc/X11/xinit/Xresources
|
||||||
sysmodmap=/etc/X11/xinit/Xmodmap
|
sysmodmap=/etc/X11/xinit/Xmodmap
|
||||||
|
|
4
dot_config/npm/npmrc
Normal file
4
dot_config/npm/npmrc
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
prefix=${XDG_DATA_HOME}/npm
|
||||||
|
cache=${XDG_CACHE_HOME}/npm
|
||||||
|
tmp=${XDG_RUNTIME_DIR}/npm
|
||||||
|
init-module=${XDG_CONFIG_HOME}/npm/init/npm-init.js
|
|
@ -1,17 +1,23 @@
|
||||||
# make Java behave when not using a DE
|
# Ensure XDG env vars are set correctly
|
||||||
export _JAVA_AWT_WM_NONREPARENTING=1
|
export XDG_CACHE_HOME="$HOME/.cache"
|
||||||
# move $GOPATH to .local
|
export XDG_CONFIG_HOME="$HOME/.config"
|
||||||
export GOPATH="$HOME/.local/opt/go"
|
export XDG_DATA_HOME="$HOME/.local/share"
|
||||||
export PATH="$HOME/.local/opt/go/bin:$PATH"
|
export XDG_STATE_HOME="$HOME/.local/state"
|
||||||
|
|
||||||
# add .local/bin to $PATH
|
# add .local/bin to $PATH
|
||||||
export PATH="$HOME/.local/bin:$PATH"
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
|
|
||||||
|
# make Java behave when not using a DE
|
||||||
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
||||||
|
|
||||||
# xsecurelock settings
|
# xsecurelock settings
|
||||||
export XSECURELOCK_AUTH=auth_x11
|
export XSECURELOCK_AUTH=auth_x11
|
||||||
export XSECURELOCK_AUTHPROTO=authproto_pam
|
export XSECURELOCK_AUTHPROTO=authproto_pam
|
||||||
export XSECURELOCK_BURNIN_MITIGATION=300
|
export XSECURELOCK_BURNIN_MITIGATION=300
|
||||||
export XSECURELOCK_PASSWORD_PROMPT=time
|
export XSECURELOCK_PASSWORD_PROMPT=time
|
||||||
|
|
||||||
{{- if eq .chezmoi.hostname "helix" }}
|
{{- if eq .chezmoi.hostname "helix" }}
|
||||||
# make GTK apps scale correctly on hidpi
|
# scale GTK applicatons on hidpi screens
|
||||||
export GDK_SCALE=2 GDK_DPI_SCALE=0.50 thunar
|
export GDK_SCALE=2 GDK_DPI_SCALE=0.50 thunar
|
||||||
export GDK_SCALE=2 GDK_DPI_SCALE="0.50 Simple-scan"
|
export GDK_SCALE=2 GDK_DPI_SCALE="0.50 Simple-scan"
|
||||||
export GDK_SCALE=2 GDK_DPI_SCALE=0.50 lutris
|
export GDK_SCALE=2 GDK_DPI_SCALE=0.50 lutris
|
||||||
|
@ -21,3 +27,25 @@ export GDK_SCALE=2 GDK_DPI_SCALE=0.50 Gajim
|
||||||
export GDK_SCALE=2 GDK_DPI_SCALE=0.50 Ristretto
|
export GDK_SCALE=2 GDK_DPI_SCALE=0.50 Ristretto
|
||||||
export GDK_SCALE=2 GDK_DPI_SCALE=0.50 ghex
|
export GDK_SCALE=2 GDK_DPI_SCALE=0.50 ghex
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
|
## No littering in $HOME!
|
||||||
|
|
||||||
|
# bash
|
||||||
|
export HISTFILE="${XDG_STATE_HOME}"/bash_history
|
||||||
|
|
||||||
|
# cargo
|
||||||
|
export CARGO_HOME="$XDG_DATA_HOME"/cargo
|
||||||
|
|
||||||
|
# go
|
||||||
|
export GOPATH="$XDG_DATA_HOME"/go
|
||||||
|
export GOMODCACHE="$XDG_CACHE_HOME"/go/mod
|
||||||
|
|
||||||
|
# GTK2
|
||||||
|
export GTK2_RC_FILES="$XDG_CONFIG_HOME"/gtk-2.0/gtkrc
|
||||||
|
|
||||||
|
# Node
|
||||||
|
export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME"/npm/npmrc
|
||||||
|
|
||||||
|
# Xorg
|
||||||
|
export XINITRC="$XDG_CONFIG_HOME"/X11/xinitrc
|
||||||
|
export XAUTHORITY="$XDG_RUNTIME_DIR"/Xauthority
|
||||||
|
|
Loading…
Reference in a new issue