Compare commits
3 Commits
735c3e2e0c
...
4dfd12ec93
Author | SHA1 | Date |
---|---|---|
Victor Timofei | 4dfd12ec93 | |
Victor Timofei | 9ca1dd220d | |
Victor Timofei | 26f60a1580 |
41
.config/path
41
.config/path
|
@ -1,21 +1,36 @@
|
|||
# my executables
|
||||
export PATH=/home/vtimofei/scripts:$PATH
|
||||
export PATH=/home/vtimofei/bin:$PATH
|
||||
export PATH=/home/vtimofei/.local/bin:$PATH
|
||||
PATH=/home/vtimofei/scripts:$PATH
|
||||
PATH=/home/vtimofei/bin:$PATH
|
||||
PATH=/home/vtimofei/.local/bin:$PATH
|
||||
|
||||
# go env
|
||||
export PATH=$PATH:/usr/local/go/bin
|
||||
export GOPATH=/home/vtimofei/go
|
||||
export GOBIN=${GOPATH}/bin
|
||||
export PATH=$GOBIN:$PATH
|
||||
PATH=$PATH:/usr/local/go/bin
|
||||
GOPATH=/home/vtimofei/go
|
||||
GOBIN=${GOPATH}/bin
|
||||
PATH=$GOBIN:$PATH
|
||||
|
||||
# rust env
|
||||
export PATH=/home/vtimofei/.cargo/bin:$PATH
|
||||
PATH=/home/vtimofei/.cargo/bin:$PATH
|
||||
|
||||
# k8s dev
|
||||
export k8s_working_dir="${GOPATH}/src/k8s.io"
|
||||
export user="victor-timofei"
|
||||
export PATH="/home/vtimofei/go/src/k8s.io/kubernetes/third_party/etcd:${PATH}"
|
||||
export K8S_PATH="$k8s_working_dir/kubernetes"
|
||||
k8s_working_dir="${GOPATH}/src/k8s.io"
|
||||
user="victor-timofei"
|
||||
PATH="/home/vtimofei/go/src/k8s.io/kubernetes/third_party/etcd:${PATH}"
|
||||
K8S_PATH="$k8s_working_dir/kubernetes"
|
||||
|
||||
export PATH="/var/lib/snapd/snap/bin:${PATH}"
|
||||
KREW_PATH="${PATH}:${HOME}/.krew/bin"
|
||||
|
||||
# firefox dev
|
||||
PATH=$KREW_PATH:$PATH:/home/vtimofei/firefox
|
||||
|
||||
PATH="/var/lib/snapd/snap/bin:${PATH}"
|
||||
|
||||
# Solana
|
||||
PATH="/home/vtimofei/.local/share/solana/install/active_release/bin:$PATH"
|
||||
|
||||
export PATH \
|
||||
GOPATH \
|
||||
GOBIN \
|
||||
k8s_working_dir \
|
||||
user \
|
||||
K8S_PATH
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
Section "ServerLayout"
|
||||
Identifier "layout"
|
||||
Screen 0 "AMD"
|
||||
Inactive "intel"
|
||||
EndSection
|
||||
#Section "ServerLayout"
|
||||
# Identifier "layout"
|
||||
# Screen 0 "AMD"
|
||||
# Inactive "intel"
|
||||
#EndSection
|
||||
|
||||
Section "Device"
|
||||
Identifier "AMD"
|
||||
|
|
|
@ -23,3 +23,30 @@ Section "Monitor"
|
|||
|
||||
Option "Position" "2049 0"
|
||||
EndSection
|
||||
|
||||
## 1080p monitor
|
||||
#Section "Monitor"
|
||||
# # Monitor Identify
|
||||
# Identifier "eDP1"
|
||||
#
|
||||
# # Setting Resolution and Modes
|
||||
# Option "PreferredMode" "1366x768"
|
||||
# Option "TargetRefresh" "60"
|
||||
#
|
||||
# Option "LeftOf" "HDMI1"
|
||||
#
|
||||
# Option "Position" "0 0"
|
||||
#EndSection
|
||||
#
|
||||
#Section "Monitor"
|
||||
# # Monitor Identify
|
||||
# Identifier "HDMI1"
|
||||
#
|
||||
# # Setting Resolution and Modes
|
||||
# Option "PreferredMode" "1920x1080"
|
||||
# Option "TargetRefresh" "60"
|
||||
#
|
||||
# Option "RightOf" "eDP1"
|
||||
#
|
||||
# Option "Position" "1366 0"
|
||||
#EndSection
|
||||
|
|
Loading…
Reference in New Issue