Changeset fc6fa17 in dotfiles


Ignore:
Timestamp:
Sep 6, 2024, 3:49:57 AM (2 months ago)
Author:
Mikhail Kirillov <w96k@…>
Branches:
master
Children:
5211578
Parents:
fde9de8
Message:

Update mostly only fonts

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • X/.Xdefaults

    rfde9de8 rfc6fa17  
    4747xterm*locale: true
    4848xterm*vt100.locale: true
    49 xterm*font: x:-adobe-courier-medium-r-normal--14-140-75-75-m-90-iso8859-1
     49! xterm*font: x:-misc-fixed-medium-r-normal--14-130-75-75-c-70-iso10646-1
     50! xterm*font: x:-misc-fixed-bold-r-normal--15-*-75-75-c-90-iso10646-1
     51xterm*font: x:-adobe-courier-bold-r-normal--14-*-75-75-m-90-iso10646-1
     52xterm*boldMode: false
     53! xterm*font: x:-adobe-courier-medium-r-normal--14-140-75-75-m-90-iso8859-1
    5054! xterm*boldFont: x:-adobe-courier-medium-r-bold--14-140-75-75-m-90-iso8859-1
    5155xterm*vt100.allowBoldFonts: True
     
    6266xterm.pointerColor: red
    6367
    64 *font: x:-adobe-courier-medium-r-normal--14-140-75-75-m-90-iso8859-1
     68! *font: x:-adobe-courier-medium-r-normal--14-140-75-75-m-90-iso8859-1
     69! *font: x:-misc-fixed-medium-r-normal--14-130-75-75-c-70-iso10646-1
     70*font: -adobe-courier-bold-r-normal--14-*-75-75-m-90-iso10646-1
     71*boldFont: x:-adobe-courier-bold-r-normal--14-*-75-75-m-90-iso10646-1
     72*boldMode: false
    6573
    6674emacs.toolBar: 0
     
    6876emacs.geometry:=80x49+270+0
    6977! emacs.font: Unifont-12
    70 emacs.font: -adobe-courier-medium-r-normal--14-140-75-75-m-90-iso8859-1
    71 emacs.boldFont: x:-adobe-courier-medium-r-bold--14-140-75-75-m-90-iso8859-1
     78! emacs.font: -adobe-courier-medium-r-normal--14-140-75-75-m-90-iso8859-1
     79! emacs.font: -misc-fixed-medium-r-normal--14-130-75-75-c-70-iso10646-1
     80emacs.font: -adobe-courier-bold-r-normal--14-*-75-75-m-90-iso10646-1
     81emacs.boldFont: -adobe-courier-bold-o-normal--14-*-75-75-m-90-iso10646-1
     82! emacs.boldFont: x:-adobe-courier-medium-r-bold--14-140-75-75-m-90-iso8859-1
    7283emacs.menuBar: 0
    7384emacs.verticalScrollBars: off
  • emacs/.emacs.d/.emacs-config.org

    rfde9de8 rfc6fa17  
    2828
    2929  (setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/")
    30                      ("melpa" . "http://melpa.org/packages/")))
     30                     ("melpa" . "http://melpa.org/packages/")))
    3131
    3232  (when (< emacs-major-version 27)
     
    8282#+BEGIN_SRC emacs-lisp :tangle init.el
    8383  (setq config-dotfiles-path "/home/w96k/projects/dotfiles/emacs/.emacs.d/"
    84         config-path "~/.emacs.d/"
    85         config-name ".emacs-config.org")
     84        config-path "~/.emacs.d/"
     85        config-name ".emacs-config.org")
    8686
    8787  (defun config-visit ()
     
    483483#+begin_src emacs-lisp :tangle init.el
    484484  (use-package rmsbolt
    485     :defer t
    486     :hook (prog-mode . rmsbolt-mode))
     485    :defer t)
    487486#+end_src
    488487
     
    12241223#+end_src
    12251224
     1225** Window Divider
     1226#+begin_src emacs-lisp :tangle init.el
     1227  (window-divider-mode t)
     1228#+end_src
     1229
     1230** Use specific font for major modes
     1231#+begin_src emacs-lisp :tangle init.el
     1232  (buffer-face-mode t)
     1233
     1234  (defun set-normal-font ()
     1235    "Set normal weight font in current buffer"
     1236    (interactive)
     1237    (buffer-face-mode 1)
     1238    (setq buffer-face-mode-face '(:weight normal))
     1239    (buffer-face-mode))
     1240
     1241  ;; Use monospaced font faces in current buffer
     1242  (defun set-bold-font ()
     1243    "Sets a bold font in current buffer"
     1244    (interactive)
     1245    (buffer-face-mode 1)
     1246    (setq buffer-face-mode-face '(:weight bold))
     1247    (buffer-face-mode))
     1248
     1249  (add-hook 'dired-mode-hook 'set-normal-font)
     1250  (add-hook 'org-mode-hook 'set-normal-font)
     1251#+end_src
  • guix/.dotfiles/.bashrc

    rfde9de8 rfc6fa17  
    11export GUIX_PACKAGE_PATH=$HOME/.guix-packages
    22export GUIX_EXTRA_PROFILES=$HOME/.guix-extra-profiles
     3
     4export PS1="\e[0;34m\u@\e[0;35m\h \e[0;30m\w\${GUIX_ENVIRONMENT:+ [env]}$ "
     5
  • guix/.dotfiles/home-configuration.scm

    rfde9de8 rfc6fa17  
    2020(define wkz-home (home-environment
    2121                  (packages (specifications->packages (list
    22                                                        "guix"
     22                                                        "mg"
    2323                                                       "ratpoison"
     24                                                        "xterm"
     25                                                        "screen"
    2426                                                       "xdot"
    2527                                                       "graphviz"
    2628                                                       "sed"
    27                                                        "darktable"
     29                                                       ;;"darktable"
     30
     31                                                       "global"
     32                                                       "emacs-ggtags"
     33                                                       "emacs-semantic-refactor"
    2834                                            "openssh"
    2935                                            "docker-compose"
     
    3339                                            "emacs-xterm-color"
    3440                                            "emacs-lsp-mode"
     41                                           
    3542                                            "emacs-helm"
     43                                            "emacs-helm-gtags"
     44                                           
    3645                                            "emacs-magit"
    3746                                            "emacs-git-timemachine"
     
    4251                                            "emacs-mastodon"
    4352                                            "emacs-org-roam"
     53                                            "emacs-undo-tree"
     54                                            "emacs-expand-region"
     55
     56                                            "emacs-nyxt"
     57                                            "nyxt"
    4458
    4559                                            "guile"
     
    5064                                           
    5165                                            ;;"emacs-telega"
     66                                            ;;"emacs-telega-contrib"
    5267                                            "emacs-guix"
    5368                                            "emacs-simple-httpd"
    5469                                            "emacs-osm"
     70                                            "translate-shell"
    5571                                            "wget"
    5672                                            "bitcoin-core"
     73                                            "monero"
     74                                            "monero-gui"
    5775                                            "xrandr"
    5876                                            "unzip"
    5977                                            "zip"
    6078                                            "mpv"
     79                                            "ffmpeg"
    6180                                            "emacs-rmsbolt"
    6281                                            "git"
     
    7089                                            "emacs-simple-httpd"
    7190                                            "emacs-guix"
    72                                             "gimp"
     91                                            ;;"gimp"
    7392                                            "imagemagick"
    7493                                            "stow"
    75                                             "icecat"
     94                                            ;;"icecat"
    7695                                            "smartmontools"
    7796                                            "lshw"
     
    88107                                            "grep"
    89108                                            "xlockmore"
    90                                             "bitcoin-core"
    91109                                            "x11-ssh-askpass"
    92110                                            "pinentry-emacs"
    93                                             "texlive"
     111                                            ;;"texlive"
    94112                                            "fetchmail"
    95113                                            "gnupg"
     
    97115
    98116                                            "universal-ctags"
     117                                           
    99118                                            "c-intro-and-ref"
     119                                            "sicp"
     120
     121                                            "font-xfree86-type1"
     122                                            "xlsfonts"
     123                                            "font-alias"
    100124                                            ;; "wkz-php"
    101125                                            ;; "wkz-python"
     
    125149                   ))
    126150
    127     (service home-redshift-service-type
    128              (home-redshift-configuration
    129               (location-provider 'manual)
    130               (latitude 41.71)
    131               (longitude 44.82)
    132               ))
     151;;    (service home-redshift-service-type
     152;;           (home-redshift-configuration
     153;;            (location-provider 'manual)
     154;;            (latitude 41.71)
     155;;            (longitude 44.82)
     156;;            ))
    133157
    134158    ;; (service home-x11-display-service-type)
     
    139163          (ssh-support? #t)))
    140164
    141          (service home-unclutter-service-type
    142                   (home-unclutter-configuration
    143                    (idle-timeout 1)))
     165;;       (service home-unclutter-service-type
     166;;                (home-unclutter-configuration
     167;;                 (idle-timeout 1)))
    144168
    145169         (service home-openssh-service-type
  • guix/config-desktop.scm

    rfde9de8 rfc6fa17  
    77             (gnu home services shells))
    88
    9 (use-service-modules guix cups desktop networking ssh xorg docker nix admin vnc lightdm syncthing virtualization databases)
     9(use-service-modules guix cups desktop networking ssh xorg docker nix admin vnc lightdm syncthing virtualization databases linux)
    1010(use-package-modules gnome xdisorg vnc databases)
    1111
     
    3434                (home-directory "/home/w96k")
    3535                (supplementary-groups '("wheel" "netdev" "audio" "video" "docker")))
    36                (user-account
    37                 (name "wkz")
    38                 (comment "wkz")
    39                 (group "users")
    40                 (home-directory "/home/wkz")
    41                 (supplementary-groups '("wheel" "netdev" "audio" "video" "docker")))
    4236               %base-user-accounts))
    4337
     
    4842    specification->package
    4943    '(
    50       "ratpoison"
    51       "xterm"
    52       "screen"
     44
    5345      ))
    5446   %base-packages))
     
    6153           (service block-facebook-hosts-service-type)
    6254
     55           (service zram-device-service-type
     56                            (zram-device-configuration
     57                              (compression-algorithm 'zlib)
     58                              (priority 100)))
     59
    6360           (service tor-service-type)
    6461           (service openssh-service-type)
     
    7067           ;;    (memory-size 1024)))
    7168           
    72            (service nix-service-type (nix-configuration
    73                                       (extra-options '("--extra-experimental-features nix-command"))))
     69           ;; (service nix-service-type)
    7470
    75            (service xvnc-service-type (xvnc-configuration
    76                                        (display-number 10)
    77                                        (localhost? #f)
    78                                        (geometry "1280x800")))
     71           ;; (service xvnc-service-type (xvnc-configuration
     72           ;;                             (display-number 10)
     73           ;;                             (localhost? #f)
     74           ;;                             (geometry "1280x800")))
    7975
    8076           (service syncthing-service-type
     
    109105                           (delete usb-modeswitch-service-type)
    110106                           (delete geoclue-service-type)
     107                           ;;(delete elogind-service-type)
     108                           (delete colord-service-type)
    111109                           
    112110                           
    113111                           (guix-service-type config => (guix-configuration
    114112                                                         (inherit config)
     113                                                                                          ;; Rely on btrfs compression.
     114                                                         (log-compression 'none)
    115115                                                         (extra-options '("--max-jobs=10"))
    116116                                                         (substitute-urls
     
    131131                           (delete gdm-service-type))))
    132132
     133  (mapped-devices (list (mapped-device
     134                          (source (uuid
     135                                   "03db8d78-051b-4a11-a7e5-b62ae0f530d4"))
     136                          (target "cryptroot")
     137                          (type luks-device-mapping))))
     138
     139  ;; The list of file systems that get "mounted".  The unique
     140  ;; file system identifiers there ("UUIDs") can be obtained
     141  ;; by running 'blkid' in a terminal.
     142  (file-systems (cons* (file-system
     143                         (mount-point "/")
     144                         (device "/dev/mapper/cryptroot")
     145                         (type "btrfs")
     146                         (options "compress=zlib:6,autodefrag")
     147                         (dependencies mapped-devices))
     148                       (file-system
     149                         (mount-point "/boot/efi")
     150                         (device (uuid "6ECD-551F"
     151                                       'fat32))
     152                         (type "vfat")) %base-file-systems))
     153 
    133154 (bootloader (bootloader-configuration
    134155              (bootloader grub-efi-bootloader)
    135156              (targets (list "/boot/efi"))
    136               (keyboard-layout keyboard-layout)))
    137  (mapped-devices (list (mapped-device
    138                         (source (uuid
    139                                  "6cfe9eed-8cdd-43da-9b9f-cec6f8ec538b"))
    140                         (target "cryptroot")
    141                         (type luks-device-mapping))))
    142 
    143  (file-systems (cons* (file-system
    144                        (mount-point "/boot/efi")
    145                        (device (uuid "17C5-3E35"
    146                                      'fat32))
    147                        (type "vfat"))
    148                       (file-system
    149                        (mount-point "/")
    150                        (device "/dev/mapper/cryptroot")
    151                        (type "ext4")
    152                        (options "discard")
    153                        (skip-check-if-clean? #f)
    154                        (repair #t)
    155                        (dependencies mapped-devices)) %base-file-systems)))
     157              (keyboard-layout keyboard-layout))))
Note: See TracChangeset for help on using the changeset viewer.