Changeset 2b2c1ba in dotfiles


Ignore:
Timestamp:
Jan 13, 2020, 11:32:34 PM (5 years ago)
Author:
Mikhail Kirillov <w96k@…>
Branches:
master
Children:
45cc7f6
Parents:
a1bb8c2
git-author:
Mikhail Kirillov <w96k@…> (01/13/20 23:31:51)
git-committer:
Mikhail Kirillov <w96k@…> (01/13/20 23:32:34)
Message:

Change font in stump and emacs

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • X/.Xdefaults

    ra1bb8c2 r2b2c1ba  
    77
    88! Black / Grey
    9 *.color0:       #000000
     9*.color0:       #999999
    1010*.color8:       #666666
    1111
     
    3939
    4040! URxvt
    41 urxvt*font: xft:terminus:pixelsize=14:autohint=true
     41URxvt.font: xft:terminus:pixelsize=14
    4242URxvt.scrollBar: false
    4343URxvt.perl-ext-common: default,selection-to-clipboard,pasta,matcher,keyboard-select
    4444URxvt.keysym.M-u:     perl:url-select:select_next
    4545URxvt.underlineURLs:  True
     46URxvt.cursorBlink: True
     47Urxvt.cursorUnderline: True
     48Urxvt.visualBell: True
     49Urxvt.fading: 50
     50Urxvt.fadeColor: #ff0000
    4651
    4752Xft.autohint: 0
  • emacs/.emacs

    ra1bb8c2 r2b2c1ba  
    1111
    1212    ;;; Set font
    13   (add-to-list 'default-frame-alist '(font . "terminus-12"))
     13  (add-to-list 'default-frame-alist '(font . "terminus-10"))
     14  (set-face-attribute 'default nil :font "-*-terminus-medium-r-*-*-*-125-75-75-*-*-iso8859-15")
     15  (setq-default line-spacing 0)
     16 
    1417
    1518  ;;; Disable emacs gui
  • wm/.stumpwmrc

    ra1bb8c2 r2b2c1ba  
    2424(clx-truetype:cache-fonts)
    2525
     26(print *time-modeline-string*)
     27
    2628(setf *mode-line-pad-x* 20
    2729      *mode-line-pad-y* 8
     
    3436      *transient-border-width* 0
    3537      *mode-line-position* :top
     38      *time-modeline-string* "%d.%m.%y %k:%M"
    3639      *window-format* "%m%n%s%t "
    3740      *hidden-window-color* ""
     
    6568
    6669;; launch Web browser
    67 (defcommand next () ()
    68   "Start Next or switch to it, if it is already running."
    69   (run-or-raise "next" '(:class "Next")))
    70 (define-key *root-map* (kbd "B") "next")
     70;; (defcommand next () ()
     71;;   "Start Next or switch to it, if it is already running."
     72;;   (run-or-raise "next" '(:class "Next")))
     73;; (define-key *root-map* (kbd "B") "next")
    7174
    7275(defcommand icecat () ()
    7376  "Start Next or switch to it, if it is already running."
    7477  (run-or-raise "icecat" '(:class "IceCat")))
    75 (define-key *root-map* (kbd "b") "icecat")
     78(define-key *root-map* (kbd "B") "icecat")
    7679
    7780;; launch terminal
     
    135138;; Menu
    136139(setq app-menu:*app-menu*
    137       '(("Telegram" "telegram-desktop")
     140      '(("Midnight Commander" "mc ~")
     141        ("Telegram" "telegram-desktop")
    138142        ("Icecat" icecat)
    139143        ("Next" next)
     
    142146
    143147(define-key *root-map* (kbd "q") "show-menu")
     148
     149;; Show / Hide mode-line
     150(define-key *root-map* (kbd "M") "mode-line")
     151
     152(set-font (make-instance 'xft:font :font "-*-terminus-medium-r-*-*-*-125-75-75-*-*-iso8859-15")
Note: See TracChangeset for help on using the changeset viewer.