some changes
This commit is contained in:
parent
58cc47b0ab
commit
f3f013d0da
|
@ -0,0 +1,28 @@
|
|||
PADDING=50
|
||||
|
||||
eval $(
|
||||
xdotool getwindowgeometry --shell $(
|
||||
xdotool getactivewindow
|
||||
) | \
|
||||
xargs printf "export %s\n"
|
||||
)
|
||||
|
||||
eval $(
|
||||
xdotool getmouselocation --shell | \
|
||||
xargs printf "export MOUSE%s\n"
|
||||
)
|
||||
|
||||
case "$1" in
|
||||
"top")
|
||||
xdotool mousemove $MOUSEX $(($Y + $PADDING))
|
||||
;;
|
||||
"bottom")
|
||||
xdotool mousemove $MOUSEX $(($Y + $HEIGHT - $PADDING))
|
||||
;;
|
||||
"left")
|
||||
xdotool mousemove $(($X + $PADDING)) $MOUSEY
|
||||
;;
|
||||
"right")
|
||||
xdotool mousemove $(($X + $WIDTH - $PADDING)) $MOUSEY
|
||||
;;
|
||||
esac
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
let
|
||||
home-manager = builtins.fetchTarball {
|
||||
url = "https://github.com/nix-community/home-manager/archive/release-23.05.tar.gz";
|
||||
sha256 = "1q7wnf4ffvzgxsn828gl6hgfqbpynk9b77grsqzfxpki86nfk4mz";
|
||||
url = "https://github.com/nix-community/home-manager/archive/release-23.11.tar.gz";
|
||||
sha256 = "16078fwcmqq41dqfnm124xxm8l6zykvqlj1kzgi0fvfil4y86slm";
|
||||
};
|
||||
customPolybar = pkgs.polybar.override {
|
||||
alsaSupport = true;
|
||||
|
@ -29,6 +29,9 @@ in {
|
|||
|
||||
nixpkgs.config = {
|
||||
allowUnfree = true;
|
||||
permittedInsecurePackages = [
|
||||
"libxls-1.6.2"
|
||||
];
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
@ -82,7 +85,7 @@ in {
|
|||
(pkgs.callPackage ../builds/pash.nix {})
|
||||
];
|
||||
|
||||
fonts.fonts = with pkgs; [
|
||||
fonts.packages = with pkgs; [
|
||||
fantasque-sans-mono
|
||||
];
|
||||
|
||||
|
@ -135,7 +138,9 @@ in {
|
|||
PasswordManagerEnabled = false;
|
||||
SearchSuggestEnabled = false;
|
||||
};
|
||||
nativeMessagingHosts.tridactyl = true;
|
||||
nativeMessagingHosts.packages = [
|
||||
pkgs.tridactyl-native
|
||||
];
|
||||
};
|
||||
|
||||
services.mpd = {
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
IdentityFile ~/.local/share/ssh/id_rsa
|
||||
IdentityFile ~/.local/share/ssh/id_dsa
|
||||
IdentityFile ~/.local/share/ssh/id_ecdsa
|
||||
IdentityFile ~/.local/share/ssh/id_ed25519
|
||||
|
||||
UserKnownHostsFile ~/.local/share/ssh/known_hosts.d/%k
|
||||
Host main
|
||||
HostName beepboop.systems
|
||||
User useracc
|
||||
Port 55555
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# exit mouse mode
|
||||
q
|
||||
Escape
|
||||
mode sxhkdrc
|
||||
|
||||
# move left
|
||||
|
@ -23,5 +23,21 @@ q
|
|||
xdotool {mousedown,click} {1,2,3}
|
||||
|
||||
# let go of clicked button
|
||||
g
|
||||
q
|
||||
xdotool mouseup 1; xdotool mouseup 2; xdotool mouseup 3
|
||||
|
||||
# move the mouse to the top of the window
|
||||
g ; g
|
||||
mousehelper top
|
||||
|
||||
# ditto for bottom
|
||||
G
|
||||
mousehelper bottom
|
||||
|
||||
# ditto for left
|
||||
0
|
||||
mousehelper left
|
||||
|
||||
# ditto for right
|
||||
dollar
|
||||
mousehelper right
|
||||
|
|
Loading…
Reference in New Issue