公式リポジトリからインストールし、stackapplet
アプレットが正しく起動しましたが、デフォルト設定を使用してアカウントを追加できませんでした。ユーザー名を追加しようとすると、何も起こりません。
私の名前を検索しても出ません。これは多くの人が経験している問題のようですが、なぜかこの問題に対する解決策はありません。最新バージョンのLaunchpadも試してみましたが、やはり動作しませんでした。
また、ドロップダウンのサイトのリストが空です。
この問題に関する報告:
- ランチパッドエラー報告はここしかし、優先順位が低いです!
- ユーザーが同じ問題を報告しました。スタックアプリケーション返品。
この問題は多くの人に解決されたようです。そのため、さまざまなネットワークで目立つようには見えません。しかし、私を含む一部の人々はまだこの問題に直面しています。
したがって、質問は次のようになります。誰でもStackapps
Linux Mint 17.1またはUbuntu 14.04.1でこれを実行できますか?
答え1
説明したのと同じ問題がありましたが、stackapplet
Ubuntu 14.04で実行できました。
秘密は、stackapplet
設定ファイルを手動で生成することです~/.stackapplet/config
。
停止する
stackapplet
:killall stackapplet.py
バックアップ
~/.stackapplet/config
:cp -a ~/.stackapplet/config ~/.stackapplet/config.bak
コンテンツを
~/.stackapplet/config
次に置き換えます。{"theme": "light", "accounts": [{"unread_reputation": 0, "last_comment_ts": 1433419194, "site_name": "Unix and Linux", "unread_comments": 0, "site": "unix.stackexchange", "reputation_on_last_poll": 313, "notifications": 0, "user_id": "26238", "last_answer_ts": 1433419196, "unread_answers": 0}], "language": "", "refresh_rate": 600000}
はい、これはJSONデータの長い行です。美しくしないでください。それ以外の場合は、
applestack
終了時に自動的に無視され、デフォルトのconfig
プロファイルで上書きされます。行終端がありませんconfig
。つまり、\n
JSONデータ文字列の末尾に行終端がありません。次に、そのキーの値を見つけて修正します
user_id
。あなたのユーザーIDはあなたのプロフィールページの右上にあります:ファイルを保存して起動します
stackapplet
。nohup /usr/share/stackapplet/stackapplet.py &>/dev/null &
さらにアカウントを追加するには、accounts
配列に要素を追加するだけです。ここでの秘訣は、site
各StackExchangeサイトの合計が何を意味するのかを調べることです。site_name
site
.com
削除されたウェブサイトのURLです。site_name
サイトの「いい名前」です
現在のファイルに設定したサイトは次のとおりですconfig
。
"site_name": "Ask Ubuntu"
"site": "ubuntu.stackexchange"
"site_name": "Unix and Linux"
"site": "unix.stackexchange"
"site_name": "Stack Overflow"
"site": "stackoverflow"
"site_name": "Server Fault"
"site": "serverfault"
"site_name": "Super User"
"site": "superuser"
"site_name": "Ask Different"
"site": "apple.stackexchange"
"site_name": "Ask Different Meta"
"site": "meta.apple.stackexchange"
ちなみに、私のconfig
ファイルは次のようになります。
{"theme": "light", "accounts": [{"unread_reputation": 0, "last_comment_ts": 1433419181, "site_name": "Ask Ubuntu", "unread_comments": 0, "site": "ubuntu.stackexchange", "reputation_on_last_poll": 134, "notifications": 0, "user_id": "100272", "last_answer_ts": 1433419183, "unread_answers": 0}, {"unread_reputation": 0, "last_comment_ts": 1433419194, "site_name": "Unix and Linux", "unread_comments": 0, "site": "unix.stackexchange", "reputation_on_last_poll": 313, "notifications": 0, "user_id": "26238", "last_answer_ts": 1433419196, "unread_answers": 0}, {"unread_reputation": 0, "last_comment_ts": 1433419207, "site_name": "Stack Overflow", "unread_comments": 0, "site": "stackoverflow", "reputation_on_last_poll": 167, "notifications": 0, "user_id": "881191", "last_answer_ts": 1433419208, "unread_answers": 0}, {"unread_reputation": 0, "last_comment_ts": 1433419186, "site_name": "Server Fault", "unread_comments": 0, "site": "serverfault", "reputation_on_last_poll": 411, "notifications": 0, "user_id": "134501", "last_answer_ts": 1433419187, "unread_answers": 0}, {"unread_reputation": 0, "last_comment_ts": 1433419190, "site_name": "Super User", "unread_comments": 0, "site": "superuser", "reputation_on_last_poll": 3061, "notifications": 0, "user_id": "156041", "last_answer_ts": 1433419191, "unread_answers": 0}, {"unread_reputation": 0, "last_comment_ts": 1433419199, "site_name": "Ask Different", "unread_comments": 0, "site": "apple.stackexchange", "reputation_on_last_poll": 6681, "notifications": 0, "user_id": "32815", "last_answer_ts": 1433419202, "unread_answers": 0}, {"unread_reputation": 0, "last_comment_ts": 1433419200, "site_name": "Ask Different Meta", "unread_comments": 0, "site": "meta.apple.stackexchange", "reputation_on_last_poll": 6681, "notifications": 0, "user_id": "32815", "last_answer_ts": 1433419203, "unread_answers": 0}], "language": "", "refresh_rate": 600000}