From a68d5744f8758fc77c34c612edac06dbc0bea129 Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Sun, 21 Apr 2019 20:10:06 -0400 Subject: [PATCH] Organize into home and system directories --- Makefile | 14 +++++++------- .fonts.conf => home/.fonts.conf | 0 .profile => home/.profile | 0 {bin => home/bin}/alarm | 0 {bin => home/bin}/backlight_adjust | 0 {bin => home/bin}/backlight_max | 0 {bin => home/bin}/backlight_min | 0 {bin => home/bin}/dunst_dpi_high | 0 {bin => home/bin}/dunst_dpi_norm | 0 {bin => home/bin}/dunst_pause | 0 {bin => home/bin}/dunst_resume | 0 {bin => home/bin}/experiment | 0 {bin => home/bin}/git-edit-email | 0 {bin => home/bin}/lock | 0 {bin => home/bin}/mpc_add_soma_bagel_radio | 0 {bin => home/bin}/mpc_add_soma_deepspaceone | 0 {bin => home/bin}/mpc_add_soma_defcon | 0 {bin => home/bin}/mpc_add_soma_dronezone | 0 {bin => home/bin}/mpc_add_soma_indie_pop_rocks | 0 {bin => home/bin}/mpc_add_soma_sonic_universe | 0 {bin => home/bin}/mpc_add_soma_spacestation | 0 {bin => home/bin}/mpc_add_soma_suburbs_of_goa | 0 {bin => home/bin}/mpd_cmd | 0 {bin => home/bin}/mpd_current_file | 0 {bin => home/bin}/mpd_currentsong | 0 {bin => home/bin}/mpd_fav | 0 {bin => home/bin}/mpd_status | 0 {bin => home/bin}/mypeetables | 0 {bin => home/bin}/plotsi | 0 {bin => home/bin}/soma_file_of_pls | 0 {bin => home/bin}/startx-only-asus_rog | 0 {bin => home/bin}/startx-only-thinkpad_t570 | 0 {bin => home/bin}/timestamp | 0 {bin => home/bin}/timestamp-iso8601 | 0 {bin => home/bin}/today | 0 {bin => home/bin}/twrap.sh | 0 {bin => home/bin}/vol_dec | 0 {bin => home/bin}/vol_inc | 0 {bin => home/bin}/vol_mute | 0 {bin => home/bin}/vol_set | 0 {bin => home/bin}/vol_unmute | 0 {bin => home/bin}/wallpaper_shuffle | 0 {bin => home/bin}/wget-clone-web | 0 {bin => home/bin}/wget-clone-web-page | 0 {bin => home/bin}/wget-clone-web-site | 0 {lib => home/lib}/login_aliases.sh | 0 {lib => home/lib}/login_functions.sh | 0 {lib => home/lib}/login_variables.sh | 0 dpkg-selections => system/debian/dpkg-selections | 0 49 files changed, 7 insertions(+), 7 deletions(-) rename .fonts.conf => home/.fonts.conf (100%) rename .profile => home/.profile (100%) rename {bin => home/bin}/alarm (100%) rename {bin => home/bin}/backlight_adjust (100%) rename {bin => home/bin}/backlight_max (100%) rename {bin => home/bin}/backlight_min (100%) rename {bin => home/bin}/dunst_dpi_high (100%) rename {bin => home/bin}/dunst_dpi_norm (100%) rename {bin => home/bin}/dunst_pause (100%) rename {bin => home/bin}/dunst_resume (100%) rename {bin => home/bin}/experiment (100%) rename {bin => home/bin}/git-edit-email (100%) rename {bin => home/bin}/lock (100%) rename {bin => home/bin}/mpc_add_soma_bagel_radio (100%) rename {bin => home/bin}/mpc_add_soma_deepspaceone (100%) rename {bin => home/bin}/mpc_add_soma_defcon (100%) rename {bin => home/bin}/mpc_add_soma_dronezone (100%) rename {bin => home/bin}/mpc_add_soma_indie_pop_rocks (100%) rename {bin => home/bin}/mpc_add_soma_sonic_universe (100%) rename {bin => home/bin}/mpc_add_soma_spacestation (100%) rename {bin => home/bin}/mpc_add_soma_suburbs_of_goa (100%) rename {bin => home/bin}/mpd_cmd (100%) rename {bin => home/bin}/mpd_current_file (100%) rename {bin => home/bin}/mpd_currentsong (100%) rename {bin => home/bin}/mpd_fav (100%) rename {bin => home/bin}/mpd_status (100%) rename {bin => home/bin}/mypeetables (100%) rename {bin => home/bin}/plotsi (100%) rename {bin => home/bin}/soma_file_of_pls (100%) rename {bin => home/bin}/startx-only-asus_rog (100%) rename {bin => home/bin}/startx-only-thinkpad_t570 (100%) rename {bin => home/bin}/timestamp (100%) rename {bin => home/bin}/timestamp-iso8601 (100%) rename {bin => home/bin}/today (100%) rename {bin => home/bin}/twrap.sh (100%) rename {bin => home/bin}/vol_dec (100%) rename {bin => home/bin}/vol_inc (100%) rename {bin => home/bin}/vol_mute (100%) rename {bin => home/bin}/vol_set (100%) rename {bin => home/bin}/vol_unmute (100%) rename {bin => home/bin}/wallpaper_shuffle (100%) rename {bin => home/bin}/wget-clone-web (100%) rename {bin => home/bin}/wget-clone-web-page (100%) rename {bin => home/bin}/wget-clone-web-site (100%) rename {lib => home/lib}/login_aliases.sh (100%) rename {lib => home/lib}/login_functions.sh (100%) rename {lib => home/lib}/login_variables.sh (100%) rename dpkg-selections => system/debian/dpkg-selections (100%) diff --git a/Makefile b/Makefile index 0767ec4..dcaa500 100644 --- a/Makefile +++ b/Makefile @@ -3,15 +3,15 @@ MAKEFLAGS := --no-builtin-rules .PHONY: install install_packages install: - @cp -Rp bin $(HOME)/ - @cp -Rp lib $(HOME)/ - @cp .profile $(HOME)/ - @cp .fonts.conf $(HOME)/ - @fc-cache $(HOME)/.fonts + @cp -Rp home/bin $(HOME)/ + @cp -Rp home/lib $(HOME)/ + @cp home/.profile $(HOME)/ + @cp home/.fonts.conf $(HOME)/ + @fc-cache $(HOME)/.fonts -install_packages: dpkg-selections +install_packages: system/debian/dpkg-selections @dpkg --set-selections < $< @apt-get -u dselect-upgrade -dpkg-selections: +system/debian/dpkg-selections: @dpkg --get-selections > $@ diff --git a/.fonts.conf b/home/.fonts.conf similarity index 100% rename from .fonts.conf rename to home/.fonts.conf diff --git a/.profile b/home/.profile similarity index 100% rename from .profile rename to home/.profile diff --git a/bin/alarm b/home/bin/alarm similarity index 100% rename from bin/alarm rename to home/bin/alarm diff --git a/bin/backlight_adjust b/home/bin/backlight_adjust similarity index 100% rename from bin/backlight_adjust rename to home/bin/backlight_adjust diff --git a/bin/backlight_max b/home/bin/backlight_max similarity index 100% rename from bin/backlight_max rename to home/bin/backlight_max diff --git a/bin/backlight_min b/home/bin/backlight_min similarity index 100% rename from bin/backlight_min rename to home/bin/backlight_min diff --git a/bin/dunst_dpi_high b/home/bin/dunst_dpi_high similarity index 100% rename from bin/dunst_dpi_high rename to home/bin/dunst_dpi_high diff --git a/bin/dunst_dpi_norm b/home/bin/dunst_dpi_norm similarity index 100% rename from bin/dunst_dpi_norm rename to home/bin/dunst_dpi_norm diff --git a/bin/dunst_pause b/home/bin/dunst_pause similarity index 100% rename from bin/dunst_pause rename to home/bin/dunst_pause diff --git a/bin/dunst_resume b/home/bin/dunst_resume similarity index 100% rename from bin/dunst_resume rename to home/bin/dunst_resume diff --git a/bin/experiment b/home/bin/experiment similarity index 100% rename from bin/experiment rename to home/bin/experiment diff --git a/bin/git-edit-email b/home/bin/git-edit-email similarity index 100% rename from bin/git-edit-email rename to home/bin/git-edit-email diff --git a/bin/lock b/home/bin/lock similarity index 100% rename from bin/lock rename to home/bin/lock diff --git a/bin/mpc_add_soma_bagel_radio b/home/bin/mpc_add_soma_bagel_radio similarity index 100% rename from bin/mpc_add_soma_bagel_radio rename to home/bin/mpc_add_soma_bagel_radio diff --git a/bin/mpc_add_soma_deepspaceone b/home/bin/mpc_add_soma_deepspaceone similarity index 100% rename from bin/mpc_add_soma_deepspaceone rename to home/bin/mpc_add_soma_deepspaceone diff --git a/bin/mpc_add_soma_defcon b/home/bin/mpc_add_soma_defcon similarity index 100% rename from bin/mpc_add_soma_defcon rename to home/bin/mpc_add_soma_defcon diff --git a/bin/mpc_add_soma_dronezone b/home/bin/mpc_add_soma_dronezone similarity index 100% rename from bin/mpc_add_soma_dronezone rename to home/bin/mpc_add_soma_dronezone diff --git a/bin/mpc_add_soma_indie_pop_rocks b/home/bin/mpc_add_soma_indie_pop_rocks similarity index 100% rename from bin/mpc_add_soma_indie_pop_rocks rename to home/bin/mpc_add_soma_indie_pop_rocks diff --git a/bin/mpc_add_soma_sonic_universe b/home/bin/mpc_add_soma_sonic_universe similarity index 100% rename from bin/mpc_add_soma_sonic_universe rename to home/bin/mpc_add_soma_sonic_universe diff --git a/bin/mpc_add_soma_spacestation b/home/bin/mpc_add_soma_spacestation similarity index 100% rename from bin/mpc_add_soma_spacestation rename to home/bin/mpc_add_soma_spacestation diff --git a/bin/mpc_add_soma_suburbs_of_goa b/home/bin/mpc_add_soma_suburbs_of_goa similarity index 100% rename from bin/mpc_add_soma_suburbs_of_goa rename to home/bin/mpc_add_soma_suburbs_of_goa diff --git a/bin/mpd_cmd b/home/bin/mpd_cmd similarity index 100% rename from bin/mpd_cmd rename to home/bin/mpd_cmd diff --git a/bin/mpd_current_file b/home/bin/mpd_current_file similarity index 100% rename from bin/mpd_current_file rename to home/bin/mpd_current_file diff --git a/bin/mpd_currentsong b/home/bin/mpd_currentsong similarity index 100% rename from bin/mpd_currentsong rename to home/bin/mpd_currentsong diff --git a/bin/mpd_fav b/home/bin/mpd_fav similarity index 100% rename from bin/mpd_fav rename to home/bin/mpd_fav diff --git a/bin/mpd_status b/home/bin/mpd_status similarity index 100% rename from bin/mpd_status rename to home/bin/mpd_status diff --git a/bin/mypeetables b/home/bin/mypeetables similarity index 100% rename from bin/mypeetables rename to home/bin/mypeetables diff --git a/bin/plotsi b/home/bin/plotsi similarity index 100% rename from bin/plotsi rename to home/bin/plotsi diff --git a/bin/soma_file_of_pls b/home/bin/soma_file_of_pls similarity index 100% rename from bin/soma_file_of_pls rename to home/bin/soma_file_of_pls diff --git a/bin/startx-only-asus_rog b/home/bin/startx-only-asus_rog similarity index 100% rename from bin/startx-only-asus_rog rename to home/bin/startx-only-asus_rog diff --git a/bin/startx-only-thinkpad_t570 b/home/bin/startx-only-thinkpad_t570 similarity index 100% rename from bin/startx-only-thinkpad_t570 rename to home/bin/startx-only-thinkpad_t570 diff --git a/bin/timestamp b/home/bin/timestamp similarity index 100% rename from bin/timestamp rename to home/bin/timestamp diff --git a/bin/timestamp-iso8601 b/home/bin/timestamp-iso8601 similarity index 100% rename from bin/timestamp-iso8601 rename to home/bin/timestamp-iso8601 diff --git a/bin/today b/home/bin/today similarity index 100% rename from bin/today rename to home/bin/today diff --git a/bin/twrap.sh b/home/bin/twrap.sh similarity index 100% rename from bin/twrap.sh rename to home/bin/twrap.sh diff --git a/bin/vol_dec b/home/bin/vol_dec similarity index 100% rename from bin/vol_dec rename to home/bin/vol_dec diff --git a/bin/vol_inc b/home/bin/vol_inc similarity index 100% rename from bin/vol_inc rename to home/bin/vol_inc diff --git a/bin/vol_mute b/home/bin/vol_mute similarity index 100% rename from bin/vol_mute rename to home/bin/vol_mute diff --git a/bin/vol_set b/home/bin/vol_set similarity index 100% rename from bin/vol_set rename to home/bin/vol_set diff --git a/bin/vol_unmute b/home/bin/vol_unmute similarity index 100% rename from bin/vol_unmute rename to home/bin/vol_unmute diff --git a/bin/wallpaper_shuffle b/home/bin/wallpaper_shuffle similarity index 100% rename from bin/wallpaper_shuffle rename to home/bin/wallpaper_shuffle diff --git a/bin/wget-clone-web b/home/bin/wget-clone-web similarity index 100% rename from bin/wget-clone-web rename to home/bin/wget-clone-web diff --git a/bin/wget-clone-web-page b/home/bin/wget-clone-web-page similarity index 100% rename from bin/wget-clone-web-page rename to home/bin/wget-clone-web-page diff --git a/bin/wget-clone-web-site b/home/bin/wget-clone-web-site similarity index 100% rename from bin/wget-clone-web-site rename to home/bin/wget-clone-web-site diff --git a/lib/login_aliases.sh b/home/lib/login_aliases.sh similarity index 100% rename from lib/login_aliases.sh rename to home/lib/login_aliases.sh diff --git a/lib/login_functions.sh b/home/lib/login_functions.sh similarity index 100% rename from lib/login_functions.sh rename to home/lib/login_functions.sh diff --git a/lib/login_variables.sh b/home/lib/login_variables.sh similarity index 100% rename from lib/login_variables.sh rename to home/lib/login_variables.sh diff --git a/dpkg-selections b/system/debian/dpkg-selections similarity index 100% rename from dpkg-selections rename to system/debian/dpkg-selections -- 2.20.1