-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bash_profile
44 lines (32 loc) · 941 Bytes
/
.bash_profile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# __ _ _
# _ __ _ __ ___ / _(_) | ___
#| '_ \| '__/ _ \| |_| | |/ _ \
#| |_) | | | (_) | _| | | __/
#| .__/|_| \___/|_| |_|_|\___|
#|_|
#
# ~/.bash_profile
[[ -f ~/.bashrc ]] && . ~/.bashrc
export PATH=$PATH:/home/$USER/.local/bin
force_color_prompt=yes
# sublime_text bug fix
export LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8
# Flutter Bin
export PATH=$PATH:/home/choleburbank/development/flutter/bin
# ADB
export PATH=$PATH:/home/choleburbank/Android/Sdk/platform-tools
# Qt and Plasma applications to kvantum
export QT_STYLE_OVERRIDE=Breeze
export QT_QPA_PLATFORMTHEME=qt5ct
# Java
export _JAVA_AWT_WM_NONREPARENTING=1
# FZF
export FZF_DEFAULT_OPTS="--layout=reverse --height 50%"
# Sudo Dmenu Prompt
export SUDO_ASKPASS=~/.local/bin/dpass
# Firebase
export FIREBASE_IMPORTANT=/home/$USER/firebase_important
# Start X server
if [[ "$(tty)" = "/dev/tty1" ]]; then
startx
fi