diff options
author | Karel Kočí <cynerd@email.cz> | 2016-11-18 22:34:36 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2016-11-18 22:34:36 +0100 |
commit | 6d046fcf58c53e8076656bbcae8bdaad87aa1328 (patch) | |
tree | 7b6cf5d6ddafb3a83516b4dc175f02f489c42533 | |
parent | d1c00b2782567bf1d816962f1d96f1cd7732ed13 (diff) | |
download | myconfigs-6d046fcf58c53e8076656bbcae8bdaad87aa1328.tar.gz myconfigs-6d046fcf58c53e8076656bbcae8bdaad87aa1328.tar.bz2 myconfigs-6d046fcf58c53e8076656bbcae8bdaad87aa1328.zip |
Various small changes
I am lazy to sum them up O:-)
-rw-r--r-- | archlinux.pkgs | 22 | ||||
-rw-r--r-- | config/i3/config | 2 | ||||
-rw-r--r-- | conkerorrc | 4 | ||||
-rw-r--r-- | profile | 3 | ||||
m--------- | vim/bundle/YouCompleteMe | 0 |
5 files changed, 30 insertions, 1 deletions
diff --git a/archlinux.pkgs b/archlinux.pkgs index 98d0e9c..c11c862 100644 --- a/archlinux.pkgs +++ b/archlinux.pkgs @@ -1,6 +1,8 @@ # Various essential to me programs console pacaur gvim +vim-spell-cs +vim-spell-en htop mc pass @@ -17,6 +19,7 @@ wget sshfs wireless_tools zsh-completions +nmap # Various graphic programs gimp @@ -28,6 +31,7 @@ feh kdegraphics-okular steam-native python-steamcontroller-git +graphviz # Pidgin purple-facebook @@ -71,6 +75,8 @@ urxvt-perls urxvt-resize-font-git urxvt-vtwheel numlockx +xdotool +inotify-tools pulsemixer qt5-styleplugins numix-frost-themes @@ -86,6 +92,9 @@ emojione-color-font twemoji-color-font texlive-fontsextra +# Codecs +x264 + # Matlab fix ncurses5-compat-libs @@ -110,6 +119,8 @@ ntp-openrc bluez-openrc bluez-utils powertop +lm_sensors-openrc +openvpn-openrc # FS btrfs-progs mdadm @@ -121,6 +132,12 @@ reiserfsprogs mesa-demos pcmciautils +# bluetooth +bluez-hid2hci +obexfs +obextool +pulseaudio-bluetooth + # My asus laptop specific stuff asus-kbd-backlight intel-ucode @@ -133,6 +150,11 @@ xf86-video-intel tig dash mkdocs +asciidoc +cppcheck +ctags +valgrind +texlive-latexextra # Web ruby-jekyll # Python diff --git a/config/i3/config b/config/i3/config index 13bcde4..30609bc 100644 --- a/config/i3/config +++ b/config/i3/config @@ -91,7 +91,7 @@ bindsym $mod+space focus mode_toggle bindsym $mod+a focus parent # focus the child container -#bindsym $mod+d focus child +bindsym $mod+Shift+a focus child # Output moving bindsym $mod+x move container to output right @@ -33,6 +33,10 @@ require("adblockplus.js"); // Set zoom to 90% session_pref("layout.css.devPixelsPerPx", "0.9"); +// Just key-kill all websites. I can use quote mode (ctrl+q) +require("key-kill"); +key_kill_mode.test.push(/\/\/.*\//); //regexp matches all sites + ///////////////////////////////////////////////////////////////////////////////// // reopening closed buffers define_key(default_global_keymap, "A-W", "revive-buffer"); @@ -1,3 +1,6 @@ +# Rest of the profile run only if login is from linux console +[[ "$(tty)" != /dev/tty* ]] && return + # Start pulse audio pulseaudio --start 2>/dev/null # Start music player daemon diff --git a/vim/bundle/YouCompleteMe b/vim/bundle/YouCompleteMe -Subproject 5875c86c4198b0cab139c0be347526c0d6c1b64 +Subproject fbe53de5a2fc7ca41602dbf7d23743f6bec8729 |