tho

joined 5 years ago
[–] [email protected] 4 points 2 years ago (1 children)
[–] [email protected] 78 points 2 years ago (3 children)

i will never grow tired repeating this: systemd is the best thing that happened to linux in the 10s

[–] [email protected] 0 points 2 years ago (1 children)

No, it's just a wireguard config

[–] [email protected] 3 points 2 years ago (2 children)

what if i use DoH?

[–] [email protected] 2 points 2 years ago

same for gh (github cli)

gh() {
  if [[ "$1" = repo && "$2" = clone ]]; then
    shift
    shift
    set -- repo clone "$@" -- --recursive
  fi
  command gh "$@"
}
[–] [email protected] 5 points 2 years ago* (last edited 2 years ago) (1 children)

the only thing this does is add "--recursive" to every git clone invocation


git() {
  if [ "$1" = clone ]; then
    shift
    set -- clone --recursive "$@"
  fi
  command git "$@"
}
[–] [email protected] 2 points 2 years ago

in zsh you can just forbid it to save duplicates

[–] [email protected] 5 points 2 years ago* (last edited 2 years ago)
ccd() {
  mkdir "$1" && cd "$1"
}
[–] [email protected] 14 points 2 years ago

btw 1 is literally impossible, there's no gui driver setting, there's no regedit switch, no nothing. on linux you just need to write to this file /sys/devices/platform/i8042/serio1/serio2/drift_time

[–] [email protected] 20 points 2 years ago* (last edited 2 years ago) (2 children)
  1. adjust the drift speed of a thinkpad trackpoint
  2. stream audio from one computer to another one (or a phone) with ease (thanks pulseaudio)
[–] [email protected] 6 points 2 years ago

neither has persistent undo yet, so i'm staying with vim for now

[–] [email protected] 1 points 2 years ago

wifi drivers then?

view more: ‹ prev next ›