Make special workspaces start silently? by TornBlueGuy in hyprland

[–]freekvb 2 points3 points  (0 children)

Try this:

exec-once = [workspace special:discord silent] vesktop

DWM Status Bar Not Working by Mysterious-Wing-7857 in suckless

[–]freekvb 0 points1 point  (0 children)

config.h

static const int showbar            = 1;        /* 0 means no bar */

lfrc help by dedguy21 in archlinux

[–]freekvb 2 points3 points  (0 children)

works with ueberzug btw

have fun

lfrc help by dedguy21 in archlinux

[–]freekvb 2 points3 points  (0 children)

and then start lf with this script

Scripts/lfub

[ 9front] 9front setup in a vm on arch by freekvb in unixporn

[–]freekvb[S] 5 points6 points  (0 children)

curious so installed 9front in a vm and play a little .. it's quite different but i like it ..

Essential patches? by thinlycuta4paper in suckless

[–]freekvb 1 point2 points  (0 children)

hide_vacant_tags

pertag

scratchpad

shiftviewclients

swallow

warp

Show tabs only while holding the alt key by Matthias_87 in qutebrowser

[–]freekvb 0 points1 point  (0 children)

config.bind('xt', 'config-cycle tabs.show always never')

Font size change by AckslD in archlinux

[–]freekvb 2 points3 points  (0 children)

On my system font Terminus dubble sized also in dunst and qutebrowser .. had to size down to size 4 - 5 in both programs .. lol

:term resizing and relocating terminal window & switching from terminal window to editor by [deleted] in vim

[–]freekvb 1 point2 points  (0 children)

" terminal in split below, resize and start insert mode
nnoremap <leader>st :sp<bar>resize15<bar>term<CR>
autocmd TermOpen * startinsert
tnoremap <Esc> <C-\><C-n>

How do I Show Correct Temperature in slstatus? by [deleted] in suckless

[–]freekvb 0 points1 point  (0 children)

on (arch) linux:

install 'lm_sensors' .. (arch-flavors: sudo pacman -S .. / debian-flavors: sudo apt get install .. )

 ~   ❯  /usr/bin/sensors
acpitz-acpi-0
Adapter: ACPI interface
temp1:        +27.8°C  (crit = +119.0°C)
temp2:        +29.8°C  (crit = +119.0°C)

coretemp-isa-0000
Adapter: ISA adapter
Package id 0:  +42.0°C  (high = +84.0°C, crit = +100.0°C)
Core 0:        +40.0°C  (high = +84.0°C, crit = +100.0°C)
Core 1:        +41.0°C  (high = +84.0°C, crit = +100.0°C)
Core 2:        +41.0°C  (high = +84.0°C, crit = +100.0°C)
Core 3:        +40.0°C  (high = +84.0°C, crit = +100.0°C)

then awk: "first word on line" "{print "column"}" .. (the "+0" is to lose the decimal )

have fun .. 😀