7bcfa26f51
Separated i3/configuration since some of my devices support XFree86 keysyms while others do not. This introduced some cascading changes. - Removed ~/.config/i3/config from this repo. Since I will be switching between devices semi-regularly and that file will be generated each time I switch to a different device running an X session, I don't want the i3/config to spam my `gst` and `gd` when I haven't changed configuration in either config.shared or config.device. - Update aliases, variables, etc. to point to config.shared instead of the generated file. - Ensure that X sessions generate the i3/config file. - Ensure that i3 reload and restart command generate the i3/config file.
32 lines
858 B
Bash
32 lines
858 B
Bash
#!/bin/sh
|
|
|
|
source ~/.profile
|
|
|
|
export DESKTOP_SESSION=cinnamon # gnome for trusty.
|
|
|
|
# NOTE: This may break your compose key.
|
|
# See http://g/i3-users/YBexXGbik7E for more details.
|
|
export GTK_IM_MODULE=xim
|
|
|
|
# Desktop background color.
|
|
xsetroot -solid "#333333"
|
|
|
|
# start tmux with a few commonly used sessions
|
|
# TODO: consider moving this else like ~/.profile, so it doesn't depend on X.
|
|
# This might be better for SSH.
|
|
tmux new -d -s main
|
|
|
|
# Start the Emacs server
|
|
emacs --daemon
|
|
|
|
# set kbds
|
|
xmodmap -e 'remove Lock = Caps_Lock'
|
|
xmodmap -e 'keysym Caps_Lock = Escape'
|
|
|
|
# since we separated our i3 configurations between a shared and device-specific
|
|
# setup, we need to make sure that when we start an X session, our i3
|
|
# configuration is up-to-date.
|
|
cat ~/.config/i3/config.{shared,device} >~/.config/i3/config
|
|
|
|
# set key repeat preferences
|
|
xset r rate 250 60
|