Skip to content

Instantly share code, notes, and snippets.

View kiyov09's full-sized avatar

Enrique Mejías kiyov09

  • Envato México
  • Guadalajara, Jalisco, México
  • X @kiyov09
View GitHub Profile
@rrrnld
rrrnld / README.md
Last active August 23, 2024 08:35
Interacting with your Firefox bookmarks and history from the command line

Firefox History and Bookmark Command Line Interface

These scripts use fzf and sqlite to efficiently query your firefox history and bookmarks. This is heavily inspired by a post from the creator of fzf: https://junegunn.kr/2015/04/browsing-chrome-history-with-fzf/. fzf allows you to select multiple items and the results returned will be the URLs.

What Does It Look Like?

asciicast

@ugursogukpinar
ugursogukpinar / sway-config
Last active September 20, 2024 16:12
wf-recorder for swaywm
set $screenrecorder `bash $HOME/scripts/toggle-screen-recorder.sh`
bindsym --to-code $mod+Shift+R exec $screenrecorder
@frjaraur
frjaraur / gist:7bad30cedc484486efd3ba5d12362bec
Created October 4, 2020 17:02
Libvirt-KVM create Bridge Interface using nmcli
### Show Active Interfaces
```
$ nmcli con show --active
```
### Create a Bridge Interface
```
$ nmcli con add ifname br0 type bridge con-name br0
Connection 'br0' (892869fe-f8ac-4f17-ace9-b8aeeeee61a0) successfully added.
```