Skip to content

Instantly share code, notes, and snippets.

View cyfrost's full-sized avatar
👨‍💻

Cyrus Frost cyfrost

👨‍💻
View GitHub Profile
@cyfrost
cyfrost / install_tilix.sh
Created March 27, 2019 18:47
Install Tilix on Fedora, and spice it up with awesome default config
#!/bin/bash
sudo dnf install -y tilix tilix-nautilus dconf && \
filename="tilix_config.dconf" && \
rm -f $filename;
gsettings set org.gnome.desktop.wm.keybindings activate-window-menu [] &&
curl -s "https://raw.githubusercontent.com/cyfrost/var/master/tilix_conf.dconf" >> $filename &&
dconf load /com/gexperts/Tilix/ < "$filename" &&
py_script_filename="add-custom-keybindings.py" &&
rm -f $py_script_filename;