11 lines
562 B
Bash
Executable File
11 lines
562 B
Bash
Executable File
#!/usr/bin/env bash
|
|
apt install -y meld
|
|
|
|
dbus-launch --exit-with-session gsettings set org.gnome.meld style-scheme 'meld-dark'
|
|
dbus-launch --exit-with-session gsettings set org.gnome.meld wrap-mode 'word'
|
|
dbus-launch --exit-with-session gsettings set org.gnome.meld highlight-syntax true
|
|
dbus-launch --exit-with-session gsettings set org.gnome.meld highlight-current-line true
|
|
dbus-launch --exit-with-session gsettings set org.gnome.meld use-system-editor false
|
|
dbus-launch --exit-with-session gsettings set org.gnome.meld custom-editor-command '/usr/bin/gvim'
|
|
|