알 수 없는 인코딩: POSIX

알 수 없는 인코딩: POSIX

실행하려고 하는데 xrdb ~/.Xresources다음과 같은 오류가 발생합니다.

~/dotfiles/.Xresources:0: warning: Unknown encoding: POSIX

어떤 제안이 있으십니까?

Xft.hinting: true 
Xft.hintstyle: hintfull 
Xft.antialias: rgba 
Xft.rgba: none
Xft.dpi: 96

Xcursor.theme: DMZ-Black
Xcursor.size: 16

#define r_bg   #000000
#define r_fg   #aaaaaa
#define r_hlfg #ffffff

! States: bg, fg, bgalt, hlbg, hlfg
rofi.color-enabled: true
rofi.color-normal: r_bg,r_fg,r_bg,r_bg,r_hlfg
rofi.color-urgent: r_bg,#ffffff,r_bg,r_bg,r_hlfg
rofi.color-active: r_bg,r_fg,#ffffff,r_bg,#ffffff
! states: background, border
rofi.color-window: r_bg,#ffffff

rofi.separator-style: solid
rofi.sidebar-mode: falseA
rofi.bw: 1
rofi.columns: 1
rofi.padding: 5

rofi.yoffset: -300
rofi.opacity: 80
rofi.fake-transparency: true
rofi.location: 0
rofi.width: 30
rofi.font: Inconsolata 12
rofi.lines: 10

! special
*.foreground:   #ffffff
*.background:   #000000
*.cursorColor:  #cc00ff

! black
*.color0:       #1c1c1c
*.color8:       #00d7ff

! red
*.color1:       #ff00ff
*.color9:       #d700ff

! green
*.color2:       #00afaf
*.color10:      #00afd7

! yellow
*.color3:       #0087af
*.color11:      #5f5fff

! blue
*.color4:       #5f5faf
*.color12:      #ff5fff

! magenta
*.color5:       #d75fff
*.color13:      #00d7ff

! cyan
*.color6:       #00afff
*.color14:      #00ffff

! white
*.color7:       #808080
*.color15:      #ccffff

! define different font params for various machines
#ifdef SRVR_chromebook
    #define urxvt_font_size 17
    #define urxvt_letter_spacing -1
#elif defined SRVR_baseline
    #define urxvt_font_size 16
    #define urxvt_letter_spacing -1
#else
    #define urxvt_font_size 15
    #define urxvt_letter_spacing -2
#endif

! make it easy to change font in one place
#define urxvt_font xft:Ubuntu Mono:pixelsize=urxvt_font_size
#define urxvt_bold_font urxvt_font:style=Bold

URxvt*font: urxvt_font
URxvt*boldFont: urxvt_bold_font

URxvt*allow_bold: true
URxvt*letterSpace: urxvt_letter_spacing

URxvt*buffered: false
URxvt.transparent: true
URxvt*shading: 15

URxvt*scrollBar:     false

또한 urxvt, tmux 및 vim을 사용하여 256색 지원을 받는 데 문제가 있습니다.

출력은 locale다음과 같습니다

LANG=
LC_CTYPE="POSIX"
LC_NUMERIC="POSIX"
LC_TIME="POSIX"
LC_COLLATE="POSIX"
LC_MONETARY="POSIX"
LC_MESSAGES="POSIX"
LC_PAPER="POSIX"
LC_NAME="POSIX"
LC_ADDRESS="POSIX"
LC_TELEPHONE="POSIX"
LC_MEASUREMENT="POSIX"
LC_IDENTIFICATION="POSIX"
LC_ALL=POSIX

저는 페도라를 쓰고 있어요

답변1

xrdb명령 실행 중에 일시적으로 다른 로케일을 설정할 수 있습니다.

LC_ALL=C xrdb ~/.Xresources

내 생각 xrdb엔 기본 로케일 API를 지원하지만 POSIX 로케일을 처리하는 방법을 모르는 일부 레거시 라이브러리로 컴파일된 것 같습니다. (재현할 수 있는 경우 이 답변에 대한 링크가 포함된 버그 보고서를 제출할 수 있습니다.관련 규격POSIX를 정의해야 하며 C 로케일과 동일하게 작동합니다. )

관련 정보