공식 저장소에서 설치했고 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}