Minor tweaks.
This commit is contained in:
parent
b0fbbd8445
commit
c9f49db3c2
|
|
@ -28,8 +28,10 @@ apt install -y inxi
|
|||
apt --force-yes install -y xmlstarlet
|
||||
apt install -y hexedit
|
||||
#apt install -y wicd-curses
|
||||
apt install -y smem smemcap smemstat
|
||||
apt install -y htop
|
||||
apt install -y iotop
|
||||
apt install -y inotify-tools
|
||||
apt install -y sysstat
|
||||
apt install -y mpv
|
||||
apt install -y netcat
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
#!/usr/bin/env bash
|
||||
# ROX-Filer settings
|
||||
apt install -y rox-filer
|
||||
apt install -y xmlstarlet
|
||||
sudo apt install -y rox-filer
|
||||
sudo apt install -y xmlstarlet
|
||||
|
||||
# Make changes to Options, menus2 using xmlstarlet at the bottom of this script.
|
||||
|
||||
DEST=${1:-/etc/skel}
|
||||
ROXFILER_HOME=${DEST}/.config/rox.sourceforce.net
|
||||
ROXFILER_HOME=${DEST}/.config/rox.sourceforge.net
|
||||
MIMETYPES=${ROXFILER_HOME}/MIME-types
|
||||
mkdir -p ${ROXFILER_HOME}/ROX-Filer/
|
||||
mkdir -p ${MIMETYPES}
|
||||
|
|
@ -126,6 +126,19 @@ cat > ${ROXFILER_HOME}/ROX-Filer/Bookmarks.xml <<'EOF'
|
|||
</groups>
|
||||
EOF
|
||||
|
||||
# <Option name="display_dir_colour">#000080</Option> Navy Blue
|
||||
# <Option name="display_unkn_colour">#000000</Option> Black
|
||||
# <Option name="display_cdev_colour">#000000</Option> Black
|
||||
# <Option name="display_bdev_colour">#000000</Option> Black
|
||||
# <Option name="display_file_colour">#000000</Option> Black
|
||||
# <Option name="display_pipe_colour">#444444</Option> Charcoal
|
||||
# <Option name="pinboard_bg_colour">#888</Option> Grey
|
||||
# <Option name="pinboard_fg_colour">#fff</Option> White
|
||||
# <Option name="display_adir_colour">#006000</Option> Green
|
||||
# <Option name="display_exec_colour">#006000</Option> Green
|
||||
# <Option name="display_sock_colour">#ff00ff</Option> Magenta
|
||||
# <Option name="display_door_colour">#ff00ff</Option> Magenta
|
||||
# <Option name="display_err_colour">#ff0000</Option> Red
|
||||
cat > ${ROXFILER_HOME}/ROX-Filer/Options <<'EOF'
|
||||
<?xml version="1.0"?>
|
||||
<Options>
|
||||
|
|
|
|||
|
|
@ -13,3 +13,14 @@ cd stylish-gtk-theme
|
|||
dbus-launch --exit-with-session gsettings set org.gnome.desktop.interface gtk-theme "Stylish-Dark-Laptop"
|
||||
dbus-launch --exit-with-session gsettings set org.gnome.desktop.wm.preferences theme "Stylish-Dark-Laptop"
|
||||
|
||||
## Dark for qt4/5
|
||||
# qt4
|
||||
sed -i '/[Qt]/a style=GTK+' ${DEST}/.config/Trolltech.conf
|
||||
|
||||
# qt5
|
||||
sudo apt install -y qt5-style-plugins
|
||||
|
||||
sudo cat >> /etc/environment <<EOF
|
||||
QT_QPA_PLATFORMTHEME=gtk2
|
||||
QT_STYLE_OVERRIDE=gtk2
|
||||
EOF
|
||||
|
|
|
|||
|
|
@ -171,6 +171,9 @@ cat > ${DEST}/.zgen-local-plugins << 'EOF'
|
|||
# Add Fish-like autosuggestions to your ZSH
|
||||
zgen load zsh-users/zsh-autosuggestions
|
||||
|
||||
# IDE-like type-ahead completion for Zsh, asynchronous/non-blocking
|
||||
#zgen load marlonrichert/zsh-autocomplete
|
||||
|
||||
# k is a zsh script / plugin to make directory listings more readable,
|
||||
# adding a bit of color and some git status information on files and directories
|
||||
zgen load rimraf/k
|
||||
|
|
|
|||
Loading…
Reference in New Issue