feednix 在 ubuntu 上安装但出现一些问题

feednix 在 ubuntu 上安装但出现一些问题

嘿,我在 ubuntu 上安装 feednix,但出现了一些错误。(如果需要更多信息,请在下面评论)

najeeb@najeeb:~/Documents/Feednix$ feednix 
  cp: cannot stat ‘/etc/xdg/feednix/config.json’: No such file or directory
  chmod: cannot access ‘/home/najeeb/.config/feednix/config.json’: No such file or directory

在此处输入图片描述

答案1

GitHub 上有一个问题问题#38这说明 config.json 文件不会在安装过程中自动创建,您需要从存储库中复制它。

我的建议是先在终端中执行以下操作来创建目录:

mkdir -p ~/.config/feednix/

然后输入以下内容来创建默认设置:

cat > ~/.config/feednix/config.json << EOF
{
    "colors" : { 

        /* ====== Color Definitions =======
         *  BLACK   0
         *  RED     1
         *  GREEN   2
         *  YELLOW  3
         *  BLUE    4
         *  MAGENTA 5
         *  CYAN    6
         *  WHITE   7
         * ================================ */

        "background" : 0,
        "active_panel" : 1,
        "idle_panel" : 6,
        "counter" : 5,
        "status_line" : 7,
        "instructions_line" : 4,
        "item_text" : 7,
        "item_highlight" : 2,
        "read_item" : 3
    },
    "ctg_win_width" : 40,
    //"view_win_height" : 200,
    "view_win_height_per" : 50,
    // Count of posts to be retrived per request. Maximum is 10000
    "posts_retrive_count" : "500",
    //Feedly API Allows for two sort types:
        // Newest(default) false 
        // Oldest true 
    "rank" : false,
    "preview_active" : true 
}
EOF

然后尝试再次运行 feednix:

feednix

我希望这能解决您的问题。

相关内容