You are not logged in.

#1 Today 14:03:06

unklar
Back to the roots 1.9
From: #! BL
Registered: 2015-10-31
Posts: 2,886

ceeslans'-ufetch

I'm thrilled by this wonderful idea from @ceeslans  big_smile

On different desktops, it can be frustrating to change the color and appearance of the Urxvt terminal (package rxvt-unicode), from the default white background and black font.
The left scroll bar was also a problem for me.
While this doesn't seem to be a problem under BL with openbox (it adapts automatically), under Wayland, here wayfire, this is not possible without active intervention.

20260315-11h34m50s-grim.png   20260315-14h00m52s-grim.png

My search engine Qwant led me to this page: https://terminal.sexy/
The crux of the matter here is a missing ./Xresources file in my /home.
If, as in this case, I select 8 and then click on Export, a ./Xresources is available for download.
I place these in my /home in the following configuration:

! special
*.foreground:   #c5c8c6
*.background:   #1d1f21
*.cursorColor:  #c5c8c6

! black
.color0:       #282a2e
*.color8:       #373b41
.color8:	#464a50

! red
*.color1:       #a54242
*.color9:       #cc6666

! green
*.color2:       #8c9440
*.color10:      #b5bd68

! yellow
*.color3:       #de935f
*.color11:      #f0c674

! blue
*.color4:       #5f819d
*.color12:      #81a2be

! magenta
*.color5:       #85678f
*.color13:      #b294bb

! cyan
*.color6:       #5e8d87
*.color14:      #8abeb7

! white
*.color7:       #707880
*.color15:      #c5c8c6

! URxvt.scrollBar
URxvt.scrollBar: false

As I understand it, you remove the * in front of the desired color and resave the file.
Then run a

xrdb ~/.Xresources

close all terminals and then see the above result.

I found the one with the unwanted scroll bar here and added it to the bottom of the file.  wink
https://blog.desdelinux.net/de/Anpassen … n-Konsole/

-----------------------------
In the desktops with sid there is a slight modification to the /etc/os-release file(ufetch-one):
https://forums.bunsenlabs.org/viewtopic … 13#p149313

Therefore the line must

distro="$(. /etc/os-release; echo ${ID:?} ${VERSION:?})"

changed to

distro="$(. /etc/os-release; echo ${ID:?} ${VERSION_CODENAME:?})"

Thanks, @ceeslans!

Offline

#2 Today 15:40:37

PackRat
jgmenu user Numero Uno
Registered: 2015-10-02
Posts: 2,847

Re: ceeslans'-ufetch

Does siduction/sid still have the urxvtconfig package?
It's a gui with all the .Xresource options for rxvt-unicode. It may pull urxvt-perls as a dependency.

Use the gui to make your selections. I don't remember if it generates a text file that can be copy-paste into the .Xresources or actually edits the .Xresources.


You must unlearn what you have learned.
    -- yoda

Online

#3 Today 18:02:18

ceeslans
Member
Registered: 2015-09-30
Posts: 211

Re: ceeslans'-ufetch

Would it help if I share my .Xresources file?

!-----------------------------------------------------
! xterm ----------------------------------------------
!-----------------------------------------------------

xterm*title:            xterm
xterm*saveLines:        4096
xterm*AllowIconInput:   on

xterm*faceName:         DejaVuSansMono
xterm*Font:             DejaVuSansMono
xterm*faceSize:         10
xterm*allowBoldFonts:   false
xterm*renderFont:       true

xterm*background:       #101010
xterm*foreground:       whitesmoke
! xterm*border:         #151515
xterm*pointerColor:     white
xterm*pointerColorBackground: #101010
xterm*cursorColor:      #EBD27D

xterm*VT100*geometry:   90x30
xterm*scrollBar:        false
xterm*InternalBorder: 	6
xterm*MarginBell:       off
xterm*multiClickTime:   250
xterm*loginShell:       true
xterm*scrollKey:        true

xterm*vt100.translations: #override \
    Shift Ctrl <Key> C: copy-selection(CLIPBOARD) \n\
    Shift Ctrl <Key> V: insert-selection(CLIPBOARD)

xterm*color0:	#2b2b2b
xterm*color8:	#5a647e
xterm*color1:	#da4939
xterm*color9:	#da4939
xterm*color2:	#a5c261
xterm*color10:	#a5c261
xterm*color3:	#ffc66d
xterm*color11:	#ffc66d
xterm*color4:	#6d9cbe
xterm*color12:	#6d9cbe
xterm*color5:	#b6b3eb
xterm*color13:	#b6b3eb
xterm*color6:	#519f50
xterm*color14:	#519f50
xterm*color7:	#e6e1dc
xterm*color15:	#f9f7f3


!-----------------------------------------------------
! urxvt ----------------------------------------------
!-----------------------------------------------------

URxvt.font: xft:DejaVuSansMono:style=Book:size=10
URxvt.boldFont: xft:DejaVuSansMono:style=Bold:size=10
URxvt.italicFont: xft:DejaVuSansMono:style=Italic:size=10
URxvt.bolditalicFont: xft:DejaVuSansMono:style=Bold Italic:size=10

URxvt.geometry: 87x29+80+80
URxvt.internalBorder: 8

URxvt.letterSpace: -1
URxvt.lineSpace: 0
URxvt.saveLines:16384
URxvt.scrollstyle: plain
URxvt.scrollBar: false
URxvt.scrollBar_right: true
URxvt.cursorUnderline: true
URxvt.iconFile: /home/one/.urxvt/icons/utilities-terminal.svg

!!! Restore Ctrl+Shift+(c|v)
URxvt.keysym.Shift-Control-C: eval:selection_to_clipboard
URxvt.keysym.Shift-Control-V: eval:paste_clipboard
URxvt.iso14755: false
URxvt.iso14755_52: false

!!! Clickble URLs
URxvt.perl-ext-common: default,matcher
URxvt.url-launcher: /usr/bin/x-www-browser
URxvt.matcher.button: 3

!!! True Transparency  
!!! opacity % is set in square brackets before 'URxvt.background' color:

URxvt.depth: 32
!! URxvt.fading: 15

URxvt.background:	[72]#101010
URxvt.foreground:	#D3D9E9

URxvt.color0:	#2b2b2b
URxvt.color8:	#5a647e
URxvt.color1:	#da4939
URxvt.color9:	#da4939
URxvt.color2:	#a5c261
URxvt.color10:	#a5c261
URxvt.color3:	#ffc66d
URxvt.color11:	#ffc66d
URxvt.color4:	#6d9cbe
URxvt.color12:	#6d9cbe
URxvt.color5:	#b6b3eb
URxvt.color13:	#b6b3eb
URxvt.color6:	#519f50
URxvt.color14:	#519f50
URxvt.color7:	#e6e1dc
URxvt.color15:	#f9f7f3

!-----------------------------------------------------
! stjerm ---------------------------------------------
!-----------------------------------------------------

!! (toggle key currently configured in ~/.fluxbox/keys)
!! stjerm.key: f12

!! stjerm.bgimage: /home/one/Pictures/flux_transp_dark.png

stjerm.autohide: true
stjerm.background: #000000
stjerm.foreground: #eeeeee
!! stjerm.border: thin
stjerm.opacity: 67

!! stjerm.position: top
!! stjerm.width: 100%
!! stjerm.height: 55%

stjerm.position: right
stjerm.width: 26%
stjerm.height: 94%

stjerm.font: DejaVuSansMono 9

stjerm.allowbold: true
stjerm.cursorBlink: false
stjerm.cursorShape: ibeam
stjerm.cursorColor: #efefef
stjerm.tabpos: bottom


!-----------------------------------------------------
! xCalc ----------------------------------------------
!-----------------------------------------------------

XCalc.geometry:                        256x384
XCalc.stipple:                         true
XCalc.ti.Command.background:           #606060
XCalc.ti.Command.foreground:           White
XCalc.ti.bevel.background:             #111111
XCalc.ti.bevel.screen.DEC.background:  #000000
XCalc.ti.bevel.screen.DEC.foreground:  LightSeaGreen
XCalc.ti.bevel.screen.DEG.background:  #000000
XCalc.ti.bevel.screen.DEG.foreground:  LightSeaGreen
XCalc.ti.bevel.screen.GRAD.background: #000000
XCalc.ti.bevel.screen.GRAD.foreground: LightSeaGreen
XCalc.ti.bevel.screen.HEX.background:  #000000
XCalc.ti.bevel.screen.HEX.foreground:  LightSeaGreen
XCalc.ti.bevel.screen.INV.background:  #000000
XCalc.ti.bevel.screen.INV.foreground:  Red
XCalc.ti.bevel.screen.LCD.background:  #000000
XCalc.ti.bevel.screen.LCD.foreground:  #CECECE
XCalc.ti.bevel.screen.LCD.shadowWidth: 0
XCalc.ti.bevel.screen.M.background:    #000000
XCalc.ti.bevel.screen.M.foreground:    LightSeaGreen
XCalc.ti.bevel.screen.OCT.background:  #000000
XCalc.ti.bevel.screen.OCT.foreground:  LightSeaGreen
XCalc.ti.bevel.screen.P.background:    #000000
XCalc.ti.bevel.screen.P.foreground:    Yellow
XCalc.ti.bevel.screen.RAD.background:  #000000
XCalc.ti.bevel.screen.RAD.foreground:  LightSeaGreen
XCalc.ti.bevel.screen.background:      #000000
XCalc.ti.button4.background:           Orange3
XCalc.ti.button5.background:           Red4
XCalc.ti.button23.background:          #611161
XCalc.ti.button24.background:          #611161
XCalc.ti.button35.background:          #611111
XCalc.ti.button37.background:          #222262
XCalc.ti.button38.background:          #222262
XCalc.ti.button39.background:          #222262
XCalc.ti.button40.background:          #722222
XCalc.ti.button42.background:          #333373
XCalc.ti.button43.background:          #333373
XCalc.ti.button44.background:          #333373
XCalc.ti.button45.background:          #833333
XCalc.ti.button47.background:          #444484
XCalc.ti.button48.background:          #444484
XCalc.ti.button49.background:          #444484
XCalc.ti.button50.background:          #944444
XCalc.ti.button52.background:          #555595
XCalc.ti.button53.background:          #555595
XCalc.ti.button54.background:          #555595
XCalc.ti.button55.background:          #a55555

!-----------------------------------------------------
! general displaysettings ----------------------------
!-----------------------------------------------------
Xft.dpi: 		96
!!	Xft.autohint:	0
!!	Xft.antialias: 	1
Xft.hintstyle:	hintslight
Xft.rgba: rgb
Xft.lcdfilter:	lcddefault

!-----------------------------------------------------
! Xcursor --------------------------------------------
!-----------------------------------------------------
Xcursor.theme:	whiteglass
Xcursor.size:	16

Online

Board footer

Powered by FluxBB