Download Latest Version Debian-Ricer-0.1.zip (29.2 MB)
Email in envelope

Get an email when there's a new version of LOSt Linux

Home / LOSt-Ricers / Debian-LOSt-Ricer
Name Modified Size InfoDownloads / Week
Parent folder
Debian-Ricer-0.1.zip 2020-07-24 29.2 MB
README.txt 2020-07-20 2.6 kB
Totals: 2 Items   29.2 MB 1
This is just a package with a folder and scripts that setup my home directory just the way I like it.  
I use the Awesome WM with the tyrannical library.  The configs are not fully finished and am still
adding to this script.

WARNING NOT TESTED

user-ricer.sh
#!/bin/bash
##########################
## LOSt Ricer for Debian (User Only) ##
##########################
# - This script just rices a pre-defined user account.
# - Warning this will write over previous config files.
# - It is recomended to run this on a test account before using on your main one.
# - You can also manually copy and paste the files and folders you wish to use instead of 
#   running this script.
# 
## Dependancies !!
# - You must have the Clarity icon theme and Simply_Circles_Dark_Envolved gtk theme already installed.
# - Copy "Clarity" to /usr/share/icons/
# - Copy "Simply_Circles_Dark_Envolved" to /usr/share/themes/
# - Or you can run the themeinstall.sh script as root.
# - Or get them from the original source;
#   https://www.gnome-look.org/p/1308970/
#   https://www.gnome-look.org/p/1012535/
#
## Minimum Required Software !!
# - Awesome WM, 
#
## Recomended Software (menus and quickkeys will not work without) !!
# - conky, chromium, scite, audacious, nano, lxterminal, nm-applet, pcmanfm
#
## SETUP USER !!
# - example USER="joe" /home/joe/
USER=""
#
## WORKING DIRECTORY
WKDIR="$(pwd)"
#
## COPY AWESOME CONFIG
cp -r $WKDIR/config/awesome /home/$USER/.config/awesome
echo "Custom AwesomeWM configs copied to .config."
sleep 2
#
## COPY GTK-3.0 FOLDER
cp -r $WKDIR/config/gtk-3.0 /home/$USER/.config/gtk-3.0
echo "gtk-3.0 copied to .config."
sleep 2
#
## COPY GTKRC-2.0.MINE
cp $WKDIR/home/gtkrc-2.0.mine /home/$USER/.gtkrc-2.0
echo "gtkrc-2.0.mine copied to home."
sleep 2
#
## NANO CONFIGS
cp -r $WKDIR/source/home/nano /home/$USER/.nano
cp $WKDIR/source/home/nanorc /home/$USER/.nanorc
echo "Nano configs copied to home."
sleep 2
#
echo "finished!"
#

themeinstaller.sh
#!/bin/bash
## THEME AND ICON INSTALLER
# - This script just copies my favorite theme and icon set from my source folder.
# - Must be run as root (sudo bash themeinstaller.sh).
#
## THEME ORIGINAL SOURCE
# https://www.gnome-look.org/p/1308970/
#
## ICON ORIGINAL SOURCE
# https://www.gnome-look.org/p/1012535/
#
## WORKING DIRECTORY
WKDIR="$(pwd)"
#
## COPY ICON SET
cp -r $WKDIR/icons/Clarity /usr/share/icons/Clarity
echo "Icons copied to /usr/share/icons."
sleep 2
#
## COPY THEME
cp -r $WKDIR/themes/Simply_Circles_Dark_Envolved /usr/share/themes/Simply_Circles_Dark_Envolved
echo "Theme copied to /usr/share/themes."
sleep 2
#
echo "finished!"
#
Source: README.txt, updated 2020-07-20