remove vestigial rofi{,-pass},systemd,tridactyl configs
[~bandali/configs] / .profile
... / ...
CommitLineData
1# ~/.profile: executed by the command interpreter for login shells.
2# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
3# exists.
4
5export EDITOR="emacsclient -nw"
6export VISUAL="emcl"
7
8PATH="$HOME/bin:$HOME/.local/bin:$PATH"
9PATH="$HOME/.cabal/bin:$HOME/.cargo/bin:$HOME/.elan/bin:$PATH"
10export PATH
11
12export XDG_CONFIG_HOME="$HOME/.config"
13export XDG_DATA_HOME="$HOME/.local/share"
14
15export INPUTRC="$XDG_CONFIG_HOME"/readline/inputrc
16export SCREENRC="$XDG_CONFIG_HOME"/screen/screenrc
17
18export MAILDIR="$HOME/mail"
19export CVS_RSH="ssh"
20
21export GOPATH="$HOME/src/go"
22
23# if running bash
24if [ -n "$BASH_VERSION" ]; then
25 # include .bashrc if it exists
26 if [ -f "$HOME/.bashrc" ]; then
27 . "$HOME/.bashrc"
28 fi
29fi
30
31setxkbmap \
32 -layout us,ir \
33 -option ctrl:nocaps \
34 -option grp:shifts_toggle
35
36xmodmap -e "keysym Menu = Super_R"
37
38xrdb -merge "$HOME/.Xresources"