• 安装Debian后做的一些事情


    1.source.list

    # aliyun
    deb http://mirrors.aliyun.com/debian/ stretch main non-free contrib
    deb http://mirrors.aliyun.com/debian/ stretch-proposed-updates main non-free contrib
    deb http://mirrors.aliyun.com/debian-security/ stretch/updates main non-free contrib
    deb http://mirrors.aliyun.com/debian/ stretch-backports main non-free contrib
    deb-src http://mirrors.aliyun.com/debian/ stretch main non-free contrib
    deb-src http://mirrors.aliyun.com/debian/ stretch-proposed-updates main non-free contrib
    deb-src http://mirrors.aliyun.com/debian-security/ stretch/updates main non-free contrib
    deb-src http://mirrors.aliyun.com/debian/ stretch-backports main non-free contrib

    2. open terminal here

    Applications Menu - File Manager - Configure Custom Actions - Create Action
        - Basic
            - Command: exo-open --working-directory %f --launch TerminalEmulator
        - Appearance Conditions
            - File Pattern: *
            - Appears if selection contains:
               Directories

    3.sudo

    apt-get install sudo
    visudo

    4. 共享文件夹

    $ cd /mnt
    $ sudo mkdir share
    $ sudo mount -t vboxsf vshare /mnt/share

    5. material theme

    cd /tmp && wget -qO - https://github.com/nana-4/materia-theme/archive/master.tar.gz | tar xz
    cd materia-theme-master
    sudo ./install.sh

    6. paper icon

    https://github.com/snwh/paper-icon-theme
    https://snwh.org/paper/download
    # install the deb
    sudo dpkg -i paper*.deb
    # install dependencies
    sudo apt-get install -f

    7. 搜狗输入法

    - https://pinyin.sogou.com/linux/
    - logout

     8. Pentadactyl

    https://github.com/willsALMANJ/pentadactyl-signed/releases

    https://files.cnblogs.com/files/ibgo/pentadactyl.tar.gz

    9. 屏幕保护

    xfce4的屏幕保护在“电源管理”里。

    10. tmux

    1 https://www.kancloud.cn/kancloud/tmux
    2 https://github.com/gpakosz/.tmux

    11. 更改ctrl和capslk按键

    ~/.xmodmap

    !
    ! Swap Caps_Lock and Control_L
    !
    remove Lock = Caps_Lock
    remove Control = Control_L
    keysym Control_L = Caps_Lock
    keysym Caps_Lock = Control_L
    add Lock = Caps_Lock
    add Control = Control_L

    ......

  • 相关阅读:
    tyvj1034 尼克的任务
    一维数状数组区间修改,查询
    ACM-T3分块
    测试2T3
    IOS下自定义click事件使用alert的bug
    小知识点
    CSS3动画基本知识
    CSS3秘笈:第十二章&第十三章
    CSS3秘笈:第十一章
    CSS3秘笈:第十章
  • 原文地址:https://www.cnblogs.com/ibgo/p/8523792.html
Copyright © 2020-2023  润新知