#+TITLE: Configuration Files #+SETUPFILE: ./setup/org-setup-file.org * SSH :PROPERTIES: :header-args: :tangle ~/.ssh/config :header-args+: :comments none :mkdirp yes :END: #+begin_src conf AddKeysToAgent yes Host grenoble hostname ***REMOVED*** Port 10022 user tdehaeze IdentityFile ~/.ssh/id_rsa Host wingaudio hostname 207.154.251.241 Port 22 user tdehaeze IdentityFile ~/.ssh/id_rsa Host octoprint hostname 192.168.1.56 Port 22 user pi IdentityFile ~/.ssh/id_rsa Host hassio hostname 192.168.1.101 Port 10022 user root IdentityFile ~/.ssh/id_rsa Host nas hostname 192.168.1.50 Port 10022 user tdehaeze IdentityFile ~/.ssh/id_rsa #+end_src * Font :PROPERTIES: :header-args: :tangle ~/.config/fontconfig/fonts.conf :header-args+: :comments none :mkdirp yes :END: #+begin_src conf serif Linux Libertine sans-serif Linux Biolinum sans Linux Biolinum monospace Hack Nerd Font Mono #+end_src * GnuPG :PROPERTIES: :header-args: :tangle ~/.gnupg/gpg-agent.conf :header-args+: :comments both :mkdirp yes :END: #+BEGIN_SRC conf default-cache-ttl 60480000 max-cache-ttl 60480000 #+END_SRC * Redshift :PROPERTIES: :header-args: :tangle ~/.config/redshift.conf :header-args+: :comments none :mkdirp yes :END: #+begin_src conf [redshift] temp-day=5700 temp-night=3500 transition=1 ;brightness-day=0.7 ;brightness-night=0.4 location-provider=manual adjustment-method=randr [manual] lat=45.1 lon=5.7 #+end_src * dmenu :PROPERTIES: :header-args: :tangle ~/.dmenurc :header-args+: :comments both :mkdirp yes :END: #+BEGIN_SRC conf # define the font for dmenu to be used DMENU_FN="Hack Nerd Font 12" # background colour for unselected menu-items DMENU_NB="#222D31" # textcolour for unselected menu-items DMENU_NF="#F9FAF9" # background colour for selected menu-items DMENU_SB="#16A085" # textcolour for selected menu-items DMENU_SF="#F9FAF9" # command for the terminal application to be used: TERMINAL_CMD="terminal -e" # export our variables DMENU_OPTIONS="-fn $DMENU_FN -nb $DMENU_NB -nf $DMENU_NF -sf $DMENU_SF -sb $DMENU_SB" #+END_SRC * Locale :PROPERTIES: :header-args: :tangle ~/.config/locale.conf :header-args+: :comments both :mkdirp yes :END: #+BEGIN_SRC conf LANG=en_US.UTF-8 LC_CTYPE="en_US.UTF-8" LC_NUMERIC=fr_FR.UTF-8 LC_TIME=fr_FR.UTF-8 LC_COLLATE="en_US.UTF-8" LC_MONETARY=fr_FR.UTF-8 LC_MESSAGES="en_US.UTF-8" LC_PAPER=fr_FR.UTF-8 LC_NAME=fr_FR.UTF-8 LC_ADDRESS=fr_FR.UTF-8 LC_TELEPHONE=fr_FR.UTF-8 LC_MEASUREMENT=fr_FR.UTF-8 LC_IDENTIFICATION=fr_FR.UTF-8 LC_ALL= #+END_SRC * Netrc It is very important that =~/.netrc= as =600= permissions. #+begin_src conf :comments none :mkdirp yes :noweb yes :tangle ~/.netrc :tangle-mode (identity #o600) machine traefik.tdehaeze.xyz login tdehaeze password <> machine portainer.tdehaeze.xyz login tdehaeze password <> machine cloud.tdehaeze.xyz login tdehaeze password <> machine syncthing.tdehaeze.xyz login tdehaeze password <> machine torrent.tdehaeze.xyz login tdehaeze password <> machine deemix.tdehaeze.xyz login tdehaeze password <> #+end_src * =bukurun= Rofi Frontend for Buku (Bookmark Manager) :PROPERTIES: :header-args: :tangle ~/.config/buku_run/config :header-args+: :comments both :mkdirp yes :header-args+: :shebang "#!/usr/bin/env bash" :END: #+BEGIN_SRC conf _rofi () { rofi -dmenu -i -no-levenshtein-sort -width 1000 "$@" } #+END_SRC Display settings #+BEGIN_SRC conf display_type=1 max_str_width=80 #+END_SRC Keybindings #+BEGIN_SRC conf switch_view="Alt+Tab" new_bookmark="Alt+n" actions="Alt+a" edit="Alt+e" delete="Alt+d" #+END_SRC Colors #+BEGIN_SRC conf help_color="#2d7ed8" #+END_SRC