Skip to content

Commit dcc3407

Browse files
committed
Added logitech button for MX750, more hosts
1 parent fb6976b commit dcc3407

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

dot_zsh/functions/logitech.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/env bash
22

33
# run this only if there xinput command and is "Logitech USB Trackball" in the `xinput list` output
4-
if command -v xinput &> /dev/null && xinput list | grep -q "Logitech USB Trackball"; then
4+
if command -v xinput &> /dev/null && xinput list | grep -qE "Logitech USB Trackball|Logitech MX750"; then
55
# logitech marble mouse settings to be able to scroll - seems to work for ubuntu 22.04
66
# from: https://ubuntuforums.org/showthread.php?t=2491926
77
# regarding left/right click & natural scroll - use standard mouse settings

dot_zshrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,3 +189,8 @@ fi
189189
#
190190

191191
alias chromium="nix-shell -p ungoogled-chromium"
192+
193+
# standard go installation
194+
# see: https://go.dev/doc/install
195+
# use this to manage multiple go install: https://go.dev/doc/manage-install
196+
export PATH=$PATH:~/go/bin:/usr/local/go/bin

private_dot_ssh/assh.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
11
hosts:
22

3+
github.com:
4+
Hostname: github.com
5+
User: git
6+
ProxyCommand: /usr/bin/nc %h %p
7+
38
hegemon:
4-
# ssh homer -> ssh 1.2.3.4 -p 2222 -u robert
59
Hostname: hegemon
610
User: kusno
711
ForwardAgent: yes
12+
13+
ds_kusno:
14+
Hostname: ds
15+
Port: 2233
16+
User: kusno_adm
17+
ForwardAgent: yes
18+
19+
ds_root:
20+
Inherits:
21+
ds_kusno
22+
User: admin

0 commit comments

Comments
 (0)