avatar
Articles
478
Tags
187
Categories
31
Subscrive
Pages
  • Archives
  • Tags
  • Categories
  • Arch Linux
  • GNOME
  • Hexo
  • To Do
  • Ubuntu
  • Visual Studio Code
  • World of Warcraft
Memorandum!
Search
Subscrive
Pages
  • Archives
  • Tags
  • Categories
  • Arch Linux
  • GNOME
  • Hexo
  • To Do
  • Ubuntu
  • Visual Studio Code
  • World of Warcraft

Memorandum!

sonydb
Created2014-10-12|application
https://github.com/mattn/sonydb sonydb は古いウォークマンをSonicStage 無しで使うためのツールです。以前はJSymphonic を使っていたのですが、初期化に手間がかかるので乗り換えてみました。 ビルド$ sudo apt-get install libid3-3.8.3-dev$ git clone https://github.com/mattn/sonydb.git sonydb.cpp[2658-2664]char* detect_letter[] = { "/media/hogehoge/ECC8-B676", "/media/usbdisk", "/media/usbdisk1", "/media/WALKMAN", NULL}; $ cd sonydb$ ./autogen.sh$ ./configure$ make$ sudo make install 環境設定$ touch...
Ubuntu GNOME 14.10 + GNOME 3.14 + Wayland
Created2014-09-27|linux|gnome•wayland•gnome shell•ubuntu
Ubuntu GNOME 14.10 Beta + GNOME 3.14 (3.13.92) をWayland で動かしてみました。テキトーにやっているので、本当にWayland が有効になっているのか、怪しいですけれど。 $ ps -ef | grep waylandhoge 1376 1344 0 17:36 ? 00:00:00 gnome-session --session=gnome-waylandhoge 1454 1376 0 17:36 ? 00:00:00 /usr/bin/ssh-agent /usr/bin/dbus-launch --exit-with-session /usr/bin/im-launch gnome-session --session=gnome-waylandhoge 1457 1 0 17:36 ? 00:00:00 /usr/bin/dbus-launch --exit-with-session /usr/bin/im-launch...
Fedora 21 wayland
Created2014-09-23|linux|fedora•gnome•wayland
http://tuxdiary.com/2014/09/01/try-wayland-with-gnome/http://fedoraproject.org/wiki/Workstation Fedora 21 Alpha RC1 で、GNOME 3.14 (3.13.91) をwayland で動かしてみました。 ライブISO イメージでFedora 21 を起動 [Ctrl]+[Alt]+[F2] でコンソール起動 liveuser でログインして、以下のコマンドを実行 $ sudo systemctl stop gdm$ sudo dnf install gnome-session-wayland-session$ gnome-session --session=gnome-wayland GDM 終了時に画面が乱れたら、再度[Ctrl]+[Alt]+[F2]を押下する。
Applications Menu Icon Extension
Created2014-09-15|gnome
https://github.com/ktkr3d/apps-menu-icon アプリケーションメニュー拡張機能のトップパネル上のボタンラベルをアイコンに変更する拡張機能を作ってみました。アイコンのサイズを大きくしていくとトップパネルをはみ出して表示されるようになります。 この拡張機能を有効にするためには、あらかじめアプリケーションメニュー拡張機能を有効にしておく必要があります。 インストール$ git clone git@github.com:ktkr3d/apps-menu-icon.git ~/.local/share/gnome-shell/extensions/apps-menu-icon@ktkr3d.github.io カスタマイズ単なるCSS ですので、テキストエディタで設定をカスタマイズできます。 ~/.local/share/gnome-shell/extensions/apps-menu-icon@ktkr3d.github.io/stylesheet.css#panelApplications .panel-status-menu-box...
hexo
Created2014-09-14|cms
http://hexo.io/http://hexo.io/docs/ node.js 製の静的サイトジェネレータhexo を試してみました。 Github Pages へも展開できるようなので、Jekyll / Octopress よりも使い勝手がよければ、移行してもよいかもしれません。 nvm のインストール$ sudo apt-get install build-essential libssl-dev curl git$ git clone git://github.com/creationix/nvm.git ~/.nvm$ source ~/.nvm/nvm.sh$ nvm install v0.10.31 ~/.bashrc# nvm[[ -s "$HOME/.nvm/nvm.sh" ]] && . "$HOME/.nvm/nvm.sh"nvm use v0.10.31 > /dev/nullexport...
Customizing Applications Menu Extension
Created2014-09-06|linux|gnome
GNOME Shell の拡張機能Applications Menu のボタンを文字列からアイコンに変更してみました。 /usr/share/gnome-shell/extensios/extension.js[282-285]this._label = new St.Label({ //text: _("Applications"), style_class: 'apps-menu-button', y_expand: true, y_align: Clutter.ActorAlign.CENTER }); /usr/share/gnome-shell/extensios/stylesheet.css[9-12].apps-menu-button { background:...
Pico Theme TRAVEL
Created2014-07-26|cms
https://github.com/ktkr3d/pico-theme-travel Pico はMarkdown 形式のテキストで記事を作成するCMS ソフトウェアです。Pico 用のテーマ「トラベル」を作ってみました。Pico のプラグインと連携して、レスポンシブデザイン、Twitter, Google+, タグ, ページ化に対応しています。タグが少しうまく動いていないことと、CSS の最適化は残課題です。 インストール$ cd themes$ git clone git@github.com:ktkr3d/pico-theme-travel.git$ tree -d.├── default│   └── scripts└── pico-theme-travel └── assets ├── css ├── img └── js └── libs 環境設定config.php をサイトに合わせて編集します。 // Change$config['site_title'] =...
Nginx + PHP-FPM + Pico
Created2014-07-21|linux
http://picocms.org/ Pico はMarkdown 形式のテキストで記事を作成するCMS ソフトウェアです。Debian/SH4 環境にNginx, PHP-FPM, Pico をインストールして構築してみました。 Pico の取得と展開$ wget https://github.com/picocms/Pico/archive/master.zip -O pico.zip$ unzip pico.zip$ rm pico.zip テーマの変更https://github.com/kiiiyo/pico-theme以下のようにthemes フォルダにbootstrap テーマファイルを展開する。 $ tree -d ./pico/themes/./pico/themes/├── bootstrap│   └── assets│   ├── css│   ├── img│   └── js└── default └── scripts ./pico/config.php<?php...
Change Debian/SH4 Software Sources Again
Created2014-07-21|linux
Debian jessie-sh4 からDebian wheezy-sh4 に切り替えました。jessie に比べて、パッケージが揃っていて、依存関係の整合性もありそうです。 http://www.si-linux.co.jp/catwiki/index.php?DebianSH 最初に使うもの http://www42.tok2.com/home/forester3/rootfs/sidsh4base20130621.tar.bz2 http://www42.tok2.com/home/forester3/kernel4usl5p/3.14/modules-3.14.2-landisk.tar.gz http://www42.tok2.com/home/forester3/kernel4usl5p/3.14/vmlinuz-3.14.2-landisk http://iohack.sourceforge.jp/kogiidena/debian26/base/landisk-tools-20070612.tgz wheezy-sh4...
Change Debian/SH4 Software Sources
Created2014-07-17|linux
debian-ports.org ベースのDebian/SH4 環境を構築して、インストール済みの機能は動きましたが、パッケージの更新や追加がうまくいきません。依存関係の問題があったり、一部のパッケージがcorrupt しているようです。 代替として、sillicon-linux さんのパッケージを利用させていただくことにしました。 APT-LINE の変更/etc/apt/sources.listdeb http://www.si-linux.co.jp/pub/debian-sh/jessie-sh4 jessie main # cd /etc/apt/# mv sources.list sources.list_backup# echo deb http://www.si-linux.co.jp/pub/debian-sh/jessie-sh4 jessie main > sources.list# apt-get update# apt-get install nano wget locales netbase openssh-server...
1…252627…48
avatar
ktkr3d
Articles
478
Tags
187
Categories
31
Follow Me
Recent Posts
GNOME Remote Desktop + jp109 keyboard2025-07-01
Kdenlive2025-06-26
mpd2025-06-19
calamares2025-06-01
archiso-gnome2025-05-28
Categories
  • 3d11
  • android25
  • application9
  • cms14
  • conky1
  • develop18
  • dtv1
  • editor2
Tags
alg electron firefox extraterm python ext2fsd bridge gnome-shell-extension hyperv atom hyprland tauri chrome threejs minibook-x gitbucket hexo fancywm epgstation peercast kdenlive tomcat flutter diagrams docker freemind deepin anduinos marp gnu openvpn minecraft dex gnome-shell-extensions inspiron kinect wow gnome-remote-desktop starship ventoy
Archives
  • July 2025 1
  • June 2025 3
  • May 2025 5
  • April 2025 2
  • March 2025 8
  • February 2025 2
  • January 2025 3
  • November 2024 1
©2010 - 2025 By ktkr3d
Framework Hexo 7.3.0|Theme Butterfly 5.3.5
Search
Loading Database