diff options
| author | 2024-11-12 22:26:02 -0500 | |
|---|---|---|
| committer | 2024-11-12 22:36:49 -0500 | |
| commit | 53a0a5473f45d37027af9663638adbf56667e4ca (patch) | |
| tree | 05c6c39678a9005f95c00e0fdf31193657bd4d3d /hosts/soy/Scripts | |
| download | dotfiles-53a0a5473f45d37027af9663638adbf56667e4ca.tar.gz dotfiles-53a0a5473f45d37027af9663638adbf56667e4ca.tar.bz2 dotfiles-53a0a5473f45d37027af9663638adbf56667e4ca.zip | |
Hopefully no leaks
Diffstat (limited to 'hosts/soy/Scripts')
| -rwxr-xr-x | hosts/soy/Scripts/all.sh | 4 | ||||
| -rwxr-xr-x | hosts/soy/Scripts/disable-keybinds.sh | 11 | ||||
| -rwxr-xr-x | hosts/soy/Scripts/launch-idea.sh | 2 | ||||
| -rwxr-xr-x | hosts/soy/Scripts/launch-studio.sh | 2 | ||||
| -rwxr-xr-x | hosts/soy/Scripts/mount-code.sh | 2 | ||||
| -rwxr-xr-x | hosts/soy/Scripts/set-keyboard.sh | 4 |
6 files changed, 25 insertions, 0 deletions
diff --git a/hosts/soy/Scripts/all.sh b/hosts/soy/Scripts/all.sh new file mode 100755 index 0000000..b08eab1 --- /dev/null +++ b/hosts/soy/Scripts/all.sh @@ -0,0 +1,4 @@ +#! /usr/bin/env sh +./mount-code.sh +./set-keyboard.sh +./disable-keybinds.sh diff --git a/hosts/soy/Scripts/disable-keybinds.sh b/hosts/soy/Scripts/disable-keybinds.sh new file mode 100755 index 0000000..b0dd580 --- /dev/null +++ b/hosts/soy/Scripts/disable-keybinds.sh @@ -0,0 +1,11 @@ +#! /usr/bin/env sh +gsettings set org.gnome.shell.extensions.dash-to-dock hot-keys false +gsettings set org.gnome.shell.keybindings switch-to-application-1 [] +gsettings set org.gnome.shell.keybindings switch-to-application-2 [] +gsettings set org.gnome.shell.keybindings switch-to-application-3 [] +gsettings set org.gnome.shell.keybindings switch-to-application-4 [] +gsettings set org.gnome.shell.keybindings switch-to-application-5 [] +gsettings set org.gnome.shell.keybindings switch-to-application-6 [] +gsettings set org.gnome.shell.keybindings switch-to-application-7 [] +gsettings set org.gnome.shell.keybindings switch-to-application-8 [] +gsettings set org.gnome.shell.keybindings switch-to-application-9 [] diff --git a/hosts/soy/Scripts/launch-idea.sh b/hosts/soy/Scripts/launch-idea.sh new file mode 100755 index 0000000..e60ef00 --- /dev/null +++ b/hosts/soy/Scripts/launch-idea.sh @@ -0,0 +1,2 @@ +#! /usr/bin/env sh +/opt/idea-IC-232.8660.185/bin/idea.sh diff --git a/hosts/soy/Scripts/launch-studio.sh b/hosts/soy/Scripts/launch-studio.sh new file mode 100755 index 0000000..e2b4812 --- /dev/null +++ b/hosts/soy/Scripts/launch-studio.sh @@ -0,0 +1,2 @@ +#! /usr/bin/env sh +/opt/android-studio/bin/studio diff --git a/hosts/soy/Scripts/mount-code.sh b/hosts/soy/Scripts/mount-code.sh new file mode 100755 index 0000000..20a6788 --- /dev/null +++ b/hosts/soy/Scripts/mount-code.sh @@ -0,0 +1,2 @@ +#! /usr/bin/env sh +sudo mount -t nfs4 -o rw,bg,hard,rsize=32768,wsize=32768,tcp,timeo=600,vers=4.1 192.168.1.206:/home/andrew/c /home/andrew/c diff --git a/hosts/soy/Scripts/set-keyboard.sh b/hosts/soy/Scripts/set-keyboard.sh new file mode 100755 index 0000000..c4d3db2 --- /dev/null +++ b/hosts/soy/Scripts/set-keyboard.sh @@ -0,0 +1,4 @@ +#! /usr/bin/env sh +gsettings set org.gnome.desktop.peripherals.keyboard delay 220 +gsettings set org.gnome.desktop.peripherals.keyboard repeat-interval 45 +gsettings set org.gnome.shell.extensions.dash-to-dock hot-keys false |