- Install Tree Style Tabs Firefox extensions.
- Install
userChrome.css
(see file content below below)- Linux
- cd to ~/.mozilla/firefox/[your profile id].default/
- create folder
chrome
if it doesn’t exist - put
userChrome.css
in it
- Windows
- press Win+R
- Linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Меняет по capslock раскладку клавиатуры путем эмуляции нажатия alt-shift. | |
; После смены раскладки меняет цвет текстового курсора. Работать будет только для двух раскладок. | |
; | |
; Перед первым использованием нужно пойти в Settings => Accessibility => Text cursor и нажать | |
; тумблер Text cursor indicator. | |
; | |
; Винда не везде инициализирует курсор цветом, иногда его нужно подвинуть на один символ. | |
; Не работает для кастомных textarea, например в Notepad++. | |
; | |
; Про фичу подсветки курсора: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Wdired-mode | |
;; | |
;; (C-c C-c to commit changes) | |
;; | |
(define-key dired-mode-map (kbd "C-x C-q") 'wdired-change-to-wdired-mode) | |
;; Wgrep-mode | |
;; | |
;; (C-c C-c to commit changes) | |
;; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# On remote server | |
sudo apt install xorg dbus-x11 x11-xserver-utils | |
sudo apt install xfce4 xfce4-goodies xubuntu-icon-theme | |
sudo apt install xrdp xorgxrdp | |
echo "xfce4-session" > ~/.xsession | |
# Locally | |
sudo apt install remmina |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# How to fullscreen terminal on two monitors and | |
# undecorate window, so you can work in console emacs | |
# more comfortably. | |
# 1. install xdotool: sudo apt install xdotool | |
# | |
# 2. install alacrytty: https://github.com/alacritty/alacritty - you can modify | |
# script to work with any terminal, but allacrytty is way better. | |
# | |
# 3. start alacrytty |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Distributing a directory tree to multiple machines: | |
master: tar cf - /tree_to_clone | mbuffer -O clone0:8000 -O clone1:8000 | |
clones: mbuffer -I master:8000 | tar xf - | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Заголовок, который распарсится | |
** Второго и прочего уровня тоже конечно распарсится | |
Это превратится в конспект (модель Outline) и прекрепится | |
к заголовку. Важно, что как только парсер наткнется на | |
первый блок QUOTE или SRC конспект закончится. Ну и всякая | |
там *разметка* _работает_ со [[http://test][ссылками]] и | |
~прочей~ фигней. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; ansi-term | |
(defun switch-to-ansi-term(n) () | |
(interactive) | |
(if (get-buffer (concat "*ansi-term<" n ">*")) | |
(switch-to-buffer (concat "*ansi-term<" n ">*")) | |
(term-run "/bin/bash" (concat "*ansi-term<" n ">*") "--login")) | |
) | |
(global-set-key (kbd "M-!") (lambda () (interactive) (switch-to-ansi-ter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################################################################################ | |
# BEFORE CHROOT | |
################################################################################ | |
# -------------------------------------------------------------------------------- | |
# Wi-fi | |
# -------------------------------------------------------------------------------- | |
# | |
# wifi-menu | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Prints n (100 by default) secuential little-endian \x escaped hex numbers, starting from argv[1]. | |
# Invocation: | |
# ./seq.sh hex_number_as_string [count=100] | |
# ./seq.sh ffffdd30 10 | |
esp="$1" | |
count=${2:-100} |
NewerOlder