diff options
-rw-r--r-- | conkerorrc | 2 | ||||
-rwxr-xr-x | install | 1 | ||||
-rw-r--r-- | shellrc | 8 |
3 files changed, 11 insertions, 0 deletions
@@ -37,6 +37,8 @@ session_pref("layout.css.devPixelsPerPx", "0.9"); require("key-kill"); key_kill_mode.test.push(/\/\/.*\//); //regexp matches all sites +view_source_use_external_editor = true; + ///////////////////////////////////////////////////////////////////////////////// // reopening closed buffers define_key(default_global_keymap, "A-W", "revive-buffer"); @@ -2,6 +2,7 @@ cd `dirname $0` +# TODO arguments parsing git submodule update --init || (echo "Submodule update failed! Use --ignore-sub if it's ok."; exit 5) # Source inst and diff function @@ -32,6 +32,14 @@ alias gst='git status' alias v='vim' alias i='i3-msg' +# Systemd aliases if we are running systemd +if pidof systemd >/dev/null 2>/dev/null; then + alias sctl='sudo systemctl' + alias usctl='systemctl --user' + alias jrn='journalctl' + alias ujrn='jrn --user' +fi + genpasswd() { local l=$1 if [ "$l" = "" ]; then l=16; fi |