- BEHRINGER XM8500 * 1
- Classic Pro CM5 * 2
- BEHRINGER XENYX1202 (12in4out)
- TASCAM US-144mkii (4in4out)
- Traktor Audio 2 (0in4out)
| /opt/mikutter/core/utils.rb:172: [BUG] rb_gc_mark(): 0x000000035deac8 is T_NONE | |
| ruby 2.1.5p273 (2014-11-13 revision 48405) [x86_64-linux] | |
| -- Control frame information ----------------------------------------------- | |
| c:0011 p:---- s:0056 e:000055 CFUNC :lambda | |
| c:0010 p:0007 s:0053 E:000918 METHOD /opt/mikutter/core/utils.rb:172 | |
| c:0009 p:0011 s:0046 e:000045 METHOD /opt/mikutter/core/utils.rb:201 | |
| c:0008 p:0018 s:0040 e:000039 METHOD /opt/mikutter/core/mui/cairo_cell_renderer_message.rb:116 | |
| c:0007 p:0103 s:0035 e:000032 METHOD /opt/mikutter/core/mui/cairo_cell_renderer_message.rb:152 | |
| c:0006 p:0051 s:0028 e:000027 METHOD /opt/mikutter/core/mui/cairo_cell_renderer_message.rb:132 [FINISH] |
| <html lang="ja"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>d250g2</title> | |
| <style type="text/css"> | |
| html, body, img { | |
| margin: 0; | |
| padding :0; | |
| } | |
| html { |
I recommend fcitx-mozc for Japanese Input Method in Arch or Angergos, and I'm also using it. I think fcitx-mozc is better than ibus-mozc for some reasons. First one is that there are official binary package of fcitx-mozc, but ibus-mozc is only in AUR. Secondly, fcitx is more configurable than ibus.
Please see https://wiki.archlinux.org/index.php/Fcitx for way of installing and configuring fcitx.
After that, you can configure alternative keybind of "Zenkaku-Hankaku."
Since I'm using US keyboard, I set C-\ (Control + \) for Zenkaku-Hankaku key. The option is at
"Configure" (at fcitx's menu, appears after right-clicking fcitx icon or run `fcitx-configtool` on terminal) > "Global Config" > "Trigger Input Method."
You can switch on or off to use input method with key on that config, or switch between all of installed input methods.
| export GTK_IM_MODULE=fcitx | |
| export QT_IM_MODULE=fcitx | |
| export XMODIFIERS="@im=fcitx" |
| # ------------------------------------------------------------------------------ | |
| # tlp - Parameters for power save | |
| # Hint: some features are disabled by default, remove the leading # to enable them | |
| # Set to 0 to disable/1 to enable TLP | |
| TLP_ENABLE=1 | |
| # Seconds laptop mode has to to wait after the disk goes idle before doing a sync. | |
| # Non-zero value enables, zero disables laptop mode. |
| Section "InputClass" | |
| Identifier "Logitech USB Trackball Integration" | |
| MatchProduct "Logitech USB Trackball" | |
| MatchIsPointer "on" | |
| MatchDevicePath "/dev/input/event*" | |
| Driver "evdev" | |
| Option "ButtonMapping" "1 8 9 4 5 6 7 3 2" | |
| Option "EmulateWheel" "true" | |
| Option "EmulateWheelButton" "3" | |
| Option "ZAxisMapping" "4 5" |
| #!/bin/sh | |
| echo 'Start heating!' | |
| # get number of cpu cores | |
| cores=`cat /proc/cpuinfo | grep -c processor` | |
| pids=() | |
| while [ ${#pids[*]} -lt $cores ] ; do |
| # encoding: utf-8 | |
| require "open-uri" | |
| require "rubygems" | |
| require "nokogiri" | |
| require "kconv" | |
| require "twitter" | |
| # load OAuth keys and tokens | |
| load File.expand_path(File.dirname(__FILE__) + '/key.rb') |
| # -*- coding: utf-8 -*- | |
| Plugin.create :add_tweet_to_pocket do | |
| command(:add_tweet_to_pocket, | |
| name: "ツイートのユニークURLをPocketに追加", | |
| condition: Plugin::Command[:HasMessage], | |
| visible: true, | |
| role: :timeline) do |target| | |
| target.messages.each do |mes| |