USBIP helper scripts for usbkey
This commit is contained in:
parent
3363a9672b
commit
73dd8429c6
|
|
@ -40,39 +40,50 @@ in
|
||||||
# (pkgs.writeShellScriptBin "my-hello" ''
|
# (pkgs.writeShellScriptBin "my-hello" ''
|
||||||
# echo "Hello, ${config.home.username}!"
|
# echo "Hello, ${config.home.username}!"
|
||||||
# '')
|
# '')
|
||||||
# wineWowPackages.full
|
|
||||||
# native wayland support (unstable)
|
|
||||||
wineWowPackages.waylandFull
|
|
||||||
|
|
||||||
firefox
|
# Scripts to bind/unbind usbkey from usbip server
|
||||||
librewolf
|
(pkgs.writeShellScriptBin "usbip_usbkey_bind" ''
|
||||||
ungoogled-chromium
|
USBKEYBUSID="$(echo `grep 0930 /sys/bus/usb/devices/*/idVendor | cut -d '/' -f 6`)"
|
||||||
emacs-gtk
|
sudo usbip bind -b $USBKEYBUSID
|
||||||
telegram-desktop
|
'')
|
||||||
discord
|
(pkgs.writeShellScriptBin "usbip_usbkey_unbind" ''
|
||||||
lutris
|
USBKEYBUSID="$(echo `grep 0930 /sys/bus/usb/devices/*/idVendor | cut -d '/' -f 6`)"
|
||||||
protonup-qt
|
sudo usbip unbind -b $USBKEYBUSID
|
||||||
qpwgraph
|
'')
|
||||||
ardour
|
|
||||||
lsp-plugins
|
|
||||||
yabridge
|
|
||||||
yabridgectl
|
|
||||||
MIDIVisualizer
|
|
||||||
kdenlive
|
|
||||||
vlc
|
|
||||||
unityhub
|
|
||||||
|
|
||||||
mpdcron
|
# wineWowPackages.full
|
||||||
|
# native wayland support (unstable)
|
||||||
|
wineWowPackages.waylandFull
|
||||||
|
|
||||||
pass-wayland
|
firefox
|
||||||
thunderbird
|
librewolf
|
||||||
|
ungoogled-chromium
|
||||||
|
emacs-gtk
|
||||||
|
telegram-desktop
|
||||||
|
discord
|
||||||
|
lutris
|
||||||
|
protonup-qt
|
||||||
|
qpwgraph
|
||||||
|
ardour
|
||||||
|
lsp-plugins
|
||||||
|
yabridge
|
||||||
|
yabridgectl
|
||||||
|
MIDIVisualizer
|
||||||
|
kdenlive
|
||||||
|
vlc
|
||||||
|
unityhub
|
||||||
|
|
||||||
# Just for utils
|
mpdcron
|
||||||
pulseaudio
|
|
||||||
|
|
||||||
# For curl scripts
|
pass-wayland
|
||||||
jq
|
thunderbird
|
||||||
libnotify
|
|
||||||
|
# Just for utils
|
||||||
|
pulseaudio
|
||||||
|
|
||||||
|
# For curl scripts
|
||||||
|
jq
|
||||||
|
libnotify
|
||||||
];
|
];
|
||||||
|
|
||||||
# Home Manager is pretty good at managing dotfiles. The primary way to manage
|
# Home Manager is pretty good at managing dotfiles. The primary way to manage
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue