From 953ebe15c1aeb131ddff4d79590c7a58f05297ee Mon Sep 17 00:00:00 2001 From: Fierelier Date: Wed, 8 Mar 2023 05:14:21 +0100 Subject: [PATCH] Add mod: graphical-me.fier.de --- modlists/graphical-me.fier.de | 2 + mods/graphical-me.fier.de/data/chroot | 2 + .../skel/.config/gtk-2.0/gtkfilechooser.ini | 11 + .../data/etc/skel/.config/gtk-3.0/bookmarks | 1 + .../etc/skel/.config/gtk-3.0/settings.ini | 4 + .../data/etc/skel/.config/htop/htoprc | 39 ++ .../data/etc/skel/.config/libfm/libfm.conf | 46 ++ .../etc/skel/.config/lxpanel/default/config | 2 + .../skel/.config/lxpanel/default/panels/panel | 145 ++++ .../skel/.config/lxpanel/launchtaskbar.cfg | 4 + .../skel/.config/lxterminal/lxterminal.conf | 55 ++ .../skel/.config/pcmanfm/default/pcmanfm.conf | 26 + .../data/etc/skel/.gtkrc-2.0 | 3 + .../data/etc/skel/.xinitrc | 1 + .../data/opt/me.fier.de/app | 32 + .../data/opt/me.fier.de/applets/logoff | 7 + .../data/opt/me.fier.de/install | 30 + .../data/opt/me.fier.de/installed | 1 + .../data/opt/me.fier.de/pack | 10 + .../data/opt/me.fier.de/readme.txt | 12 + .../data/opt/me.fier.de/uninstall | 21 + .../data/opt/me.fier.de/user/modules | 6 + .../.config/autorandr/default/config | 6 + .../autorandr/.config/autorandr/default/setup | 1 + .../user/modules.d/autorandr/logoff | 3 + .../me.fier.de/user/modules.d/autorandr/run | 3 + .../user/modules.d/debian_keyboard/run | 3 + .../opt/me.fier.de/user/modules.d/lxpanel/run | 2 + .../me.fier.de/user/modules.d/openbox/exec | 2 + .../me.fier.de/user/modules.d/openbox/logoff | 2 + .../me.fier.de/user/modules.d/openbox/rc.xml | 653 ++++++++++++++++++ .../me.fier.de/user/modules.d/wallpaper/run | 2 + .../user/modules.d/xsessionrc/source | 1 + .../data/opt/me.fier.de/user/wallpaper | 1 + mods/graphical-me.fier.de/modscript | 3 + 35 files changed, 1142 insertions(+) create mode 100644 modlists/graphical-me.fier.de create mode 100755 mods/graphical-me.fier.de/data/chroot create mode 100644 mods/graphical-me.fier.de/data/etc/skel/.config/gtk-2.0/gtkfilechooser.ini create mode 100644 mods/graphical-me.fier.de/data/etc/skel/.config/gtk-3.0/bookmarks create mode 100644 mods/graphical-me.fier.de/data/etc/skel/.config/gtk-3.0/settings.ini create mode 100644 mods/graphical-me.fier.de/data/etc/skel/.config/htop/htoprc create mode 100644 mods/graphical-me.fier.de/data/etc/skel/.config/libfm/libfm.conf create mode 100644 mods/graphical-me.fier.de/data/etc/skel/.config/lxpanel/default/config create mode 100644 mods/graphical-me.fier.de/data/etc/skel/.config/lxpanel/default/panels/panel create mode 100644 mods/graphical-me.fier.de/data/etc/skel/.config/lxpanel/launchtaskbar.cfg create mode 100644 mods/graphical-me.fier.de/data/etc/skel/.config/lxterminal/lxterminal.conf create mode 100644 mods/graphical-me.fier.de/data/etc/skel/.config/pcmanfm/default/pcmanfm.conf create mode 100644 mods/graphical-me.fier.de/data/etc/skel/.gtkrc-2.0 create mode 100644 mods/graphical-me.fier.de/data/etc/skel/.xinitrc create mode 100755 mods/graphical-me.fier.de/data/opt/me.fier.de/app create mode 100644 mods/graphical-me.fier.de/data/opt/me.fier.de/applets/logoff create mode 100755 mods/graphical-me.fier.de/data/opt/me.fier.de/install create mode 100644 mods/graphical-me.fier.de/data/opt/me.fier.de/installed create mode 100755 mods/graphical-me.fier.de/data/opt/me.fier.de/pack create mode 100644 mods/graphical-me.fier.de/data/opt/me.fier.de/readme.txt create mode 100755 mods/graphical-me.fier.de/data/opt/me.fier.de/uninstall create mode 100644 mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules create mode 100644 mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/autorandr/.config/autorandr/default/config create mode 100644 mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/autorandr/.config/autorandr/default/setup create mode 100755 mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/autorandr/logoff create mode 100755 mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/autorandr/run create mode 100755 mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/debian_keyboard/run create mode 100755 mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/lxpanel/run create mode 100755 mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/openbox/exec create mode 100755 mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/openbox/logoff create mode 100644 mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/openbox/rc.xml create mode 100755 mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/wallpaper/run create mode 100644 mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/xsessionrc/source create mode 100644 mods/graphical-me.fier.de/data/opt/me.fier.de/user/wallpaper create mode 100755 mods/graphical-me.fier.de/modscript diff --git a/modlists/graphical-me.fier.de b/modlists/graphical-me.fier.de new file mode 100644 index 0000000..9124c2e --- /dev/null +++ b/modlists/graphical-me.fier.de @@ -0,0 +1,2 @@ +graphical-theme-classiclooks +graphical-me.fier.de \ No newline at end of file diff --git a/mods/graphical-me.fier.de/data/chroot b/mods/graphical-me.fier.de/data/chroot new file mode 100755 index 0000000..56dbaf4 --- /dev/null +++ b/mods/graphical-me.fier.de/data/chroot @@ -0,0 +1,2 @@ +#!/bin/sh +ln -s "/opt/me.fier.de/app" "/usr/local/bin/me.fier.de" \ No newline at end of file diff --git a/mods/graphical-me.fier.de/data/etc/skel/.config/gtk-2.0/gtkfilechooser.ini b/mods/graphical-me.fier.de/data/etc/skel/.config/gtk-2.0/gtkfilechooser.ini new file mode 100644 index 0000000..5f09f30 --- /dev/null +++ b/mods/graphical-me.fier.de/data/etc/skel/.config/gtk-2.0/gtkfilechooser.ini @@ -0,0 +1,11 @@ +[Filechooser Settings] +LocationMode=filename-entry +ShowHidden=true +ShowSizeColumn=true +GeometryX=0 +GeometryY=318 +GeometryWidth=600 +GeometryHeight=450 +SortColumn=name +SortOrder=ascending +StartupMode=recent diff --git a/mods/graphical-me.fier.de/data/etc/skel/.config/gtk-3.0/bookmarks b/mods/graphical-me.fier.de/data/etc/skel/.config/gtk-3.0/bookmarks new file mode 100644 index 0000000..5cdaccc --- /dev/null +++ b/mods/graphical-me.fier.de/data/etc/skel/.config/gtk-3.0/bookmarks @@ -0,0 +1 @@ +file:/// / diff --git a/mods/graphical-me.fier.de/data/etc/skel/.config/gtk-3.0/settings.ini b/mods/graphical-me.fier.de/data/etc/skel/.config/gtk-3.0/settings.ini new file mode 100644 index 0000000..643f5f7 --- /dev/null +++ b/mods/graphical-me.fier.de/data/etc/skel/.config/gtk-3.0/settings.ini @@ -0,0 +1,4 @@ +[Settings] +gtk-icon-theme-name = Adwaita +gtk-theme-name = ClassicLooks Summerstorm +gtk-font-name = Sans 8 diff --git a/mods/graphical-me.fier.de/data/etc/skel/.config/htop/htoprc b/mods/graphical-me.fier.de/data/etc/skel/.config/htop/htoprc new file mode 100644 index 0000000..944533c --- /dev/null +++ b/mods/graphical-me.fier.de/data/etc/skel/.config/htop/htoprc @@ -0,0 +1,39 @@ +# Beware! This file is rewritten by htop when settings are changed in the interface. +# The parser is also very primitive, and not human-friendly. +fields=0 48 17 18 38 39 40 2 46 47 49 1 +sort_key=46 +sort_direction=-1 +tree_sort_key=0 +tree_sort_direction=1 +hide_kernel_threads=1 +hide_userland_threads=1 +shadow_other_users=0 +show_thread_names=0 +show_program_path=1 +highlight_base_name=0 +highlight_megabytes=1 +highlight_threads=1 +highlight_changes=0 +highlight_changes_delay_secs=5 +find_comm_in_cmdline=1 +strip_exe_from_cmdline=1 +show_merged_command=0 +tree_view=0 +tree_view_always_by_pid=0 +header_margin=1 +detailed_cpu_time=0 +cpu_count_from_one=0 +show_cpu_usage=1 +show_cpu_frequency=0 +show_cpu_temperature=0 +degree_fahrenheit=0 +update_process_names=0 +account_guest_in_cpu_meter=0 +color_scheme=0 +enable_mouse=1 +delay=15 +left_meters=AllCPUs Memory Swap +left_meter_modes=1 1 1 +right_meters=Tasks LoadAverage Uptime +right_meter_modes=2 2 2 +hide_function_bar=0 diff --git a/mods/graphical-me.fier.de/data/etc/skel/.config/libfm/libfm.conf b/mods/graphical-me.fier.de/data/etc/skel/.config/libfm/libfm.conf new file mode 100644 index 0000000..3e14258 --- /dev/null +++ b/mods/graphical-me.fier.de/data/etc/skel/.config/libfm/libfm.conf @@ -0,0 +1,46 @@ +# Configuration file for the libfm version 1.3.2. +# Autogenerated file, don't edit, your changes will be overwritten. + +[config] +single_click=0 +use_trash=1 +confirm_del=1 +confirm_trash=1 +advanced_mode=0 +si_unit=0 +force_startup_notify=1 +backup_as_hidden=1 +no_usb_trash=1 +no_child_non_expandable=0 +show_full_names=0 +only_user_templates=0 +template_run_app=0 +template_type_once=0 +auto_selection_delay=600 +drop_default_action=auto +defer_content_test=0 +quick_exec=0 +show_internal_volumes=0 +terminal=x-terminal-emulator %s +archiver=engrampa +thumbnail_local=1 +thumbnail_max=2048 +smart_desktop_autodrop=1 + +[ui] +big_icon_size=48 +small_icon_size=16 +pane_icon_size=16 +thumbnail_size=128 +show_thumbnail=1 +shadow_hidden=0 + +[places] +places_home=1 +places_desktop=1 +places_root=0 +places_computer=0 +places_trash=1 +places_applications=1 +places_network=0 +places_unmounted=1 diff --git a/mods/graphical-me.fier.de/data/etc/skel/.config/lxpanel/default/config b/mods/graphical-me.fier.de/data/etc/skel/.config/lxpanel/default/config new file mode 100644 index 0000000..b72b2ca --- /dev/null +++ b/mods/graphical-me.fier.de/data/etc/skel/.config/lxpanel/default/config @@ -0,0 +1,2 @@ +[Command] +Logout=me.fier.de logoff diff --git a/mods/graphical-me.fier.de/data/etc/skel/.config/lxpanel/default/panels/panel b/mods/graphical-me.fier.de/data/etc/skel/.config/lxpanel/default/panels/panel new file mode 100644 index 0000000..3a206fd --- /dev/null +++ b/mods/graphical-me.fier.de/data/etc/skel/.config/lxpanel/default/panels/panel @@ -0,0 +1,145 @@ +# lxpanel config file. Manually editing is not recommended. +# Use preference dialog in lxpanel to adjust config when you can. + +Global { + edge=bottom + allign=left + margin=0 + widthtype=percent + width=100 + height=22 + transparent=1 + tintcolor=#1c1c1c + alpha=200 + setdocktype=0 + setpartialstrut=1 + usefontcolor=1 + fontcolor=#ffffff + usefontsize=0 + fontsize=10 + background=0 + backgroundfile=/usr/share/lxpanel/images/background.png + iconsize=16 + align=left +} +Plugin { + type=space + Config { + Size=2 + } + expand=0 +} +Plugin { + type=menu + Config { + image=/usr/share/icons/gnome/16x16/places/gnome-main-menu.png + system { + } + separator { + } + item { + command=run + } + separator { + } + item { + image=gnome-logout + command=logout + } + } +} +Plugin { + type=space + Config { + } +} +Plugin { + type=separator + Config { + } +} +Plugin { + type=launchbar + Config { + Button { + id=pcmanfm.desktop + } + Button { + id=gawk.desktop + } + Button { + id=lxterminal.desktop + } + Button { + id=mousepad.desktop + } + } +} +Plugin { + type=separator + Config { + } +} +Plugin { + type=taskbar + Config { + DisableUpscale=-1 + UseSmallerIcons=0 + UseMouseWheel=0 + IconsOnly=0 + GroupedTasks=0 + FlatButton=0 + } +} +Plugin { + type=separator + Config { + } +} +Plugin { + type=tray + Config { + } +} +Plugin { + type=volume + Config { + } +} +Plugin { + type=netstat + Config { + } +} +Plugin { + type=batt + Config { + } +} +Plugin { + type=separator + Config { + } +} +Plugin { + type=dclock + Config { + ClockFmt=%R + TooltipFmt=%A %x + BoldFont=0 + IconOnly=0 + CenterText=0 + } +} +Plugin { + type=separator + Config { + } +} +Plugin { + type=wincmd + Config { + Button1=iconify + Button2=shade + } +} diff --git a/mods/graphical-me.fier.de/data/etc/skel/.config/lxpanel/launchtaskbar.cfg b/mods/graphical-me.fier.de/data/etc/skel/.config/lxpanel/launchtaskbar.cfg new file mode 100644 index 0000000..a3d0e52 --- /dev/null +++ b/mods/graphical-me.fier.de/data/etc/skel/.config/lxpanel/launchtaskbar.cfg @@ -0,0 +1,4 @@ +[special_cases] +synaptic=synaptic-pkexec +soffice.bin=libreoffice +x-terminal-emulator=lxterminal diff --git a/mods/graphical-me.fier.de/data/etc/skel/.config/lxterminal/lxterminal.conf b/mods/graphical-me.fier.de/data/etc/skel/.config/lxterminal/lxterminal.conf new file mode 100644 index 0000000..5b68e9a --- /dev/null +++ b/mods/graphical-me.fier.de/data/etc/skel/.config/lxterminal/lxterminal.conf @@ -0,0 +1,55 @@ +[general] +fontname=Monospace 8 +selchars=-A-Za-z0-9,./?%&#:_ +scrollback=1000 +bgcolor=rgb(0,0,0) +fgcolor=rgb(211,215,207) +palette_color_0=rgb(0,0,0) +palette_color_1=rgb(205,0,0) +palette_color_2=rgb(78,154,6) +palette_color_3=rgb(196,160,0) +palette_color_4=rgb(52,101,164) +palette_color_5=rgb(117,80,123) +palette_color_6=rgb(6,152,154) +palette_color_7=rgb(211,215,207) +palette_color_8=rgb(85,87,83) +palette_color_9=rgb(239,41,41) +palette_color_10=rgb(138,226,52) +palette_color_11=rgb(252,233,79) +palette_color_12=rgb(114,159,207) +palette_color_13=rgb(173,127,168) +palette_color_14=rgb(52,226,226) +palette_color_15=rgb(238,238,236) +color_preset=Tango +disallowbold=false +boldbright=false +cursorblinks=false +cursorunderline=false +audiblebell=false +visualbell=false +tabpos=top +geometry_columns=80 +geometry_rows=24 +hidescrollbar=false +hidemenubar=false +hideclosebutton=false +hidepointer=false +disablef10=false +disablealt=false +disableconfirm=false + +[shortcut] +new_window_accel=n +new_tab_accel=t +close_tab_accel=w +close_window_accel=q +copy_accel=c +paste_accel=v +name_tab_accel=i +previous_tab_accel=Page_Up +next_tab_accel=Page_Down +move_tab_left_accel=Page_Up +move_tab_right_accel=Page_Down +zoom_in_accel=plus +zoom_out_accel=underscore +zoom_reset_accel=parenright diff --git a/mods/graphical-me.fier.de/data/etc/skel/.config/pcmanfm/default/pcmanfm.conf b/mods/graphical-me.fier.de/data/etc/skel/.config/pcmanfm/default/pcmanfm.conf new file mode 100644 index 0000000..90e2ceb --- /dev/null +++ b/mods/graphical-me.fier.de/data/etc/skel/.config/pcmanfm/default/pcmanfm.conf @@ -0,0 +1,26 @@ +[config] +bm_open_method=0 + +[volume] +mount_on_startup=0 +mount_removable=0 +autorun=0 + +[ui] +always_show_tabs=0 +max_tab_chars=32 +win_width=743 +win_height=435 +splitter_pos=150 +media_in_new_tab=0 +desktop_folder_new_win=0 +change_tab_on_drop=1 +close_on_unmount=1 +focus_previous=0 +side_pane_mode=places +view_mode=list +show_hidden=1 +sort=name;ascending; +toolbar=navigation;home; +show_statusbar=1 +pathbar_mode_buttons=0 diff --git a/mods/graphical-me.fier.de/data/etc/skel/.gtkrc-2.0 b/mods/graphical-me.fier.de/data/etc/skel/.gtkrc-2.0 new file mode 100644 index 0000000..6f28b11 --- /dev/null +++ b/mods/graphical-me.fier.de/data/etc/skel/.gtkrc-2.0 @@ -0,0 +1,3 @@ +gtk-icon-theme-name = "Adwaita" +gtk-theme-name = "ClassicLooks Summerstorm" +gtk-font-name = "Sans 8" diff --git a/mods/graphical-me.fier.de/data/etc/skel/.xinitrc b/mods/graphical-me.fier.de/data/etc/skel/.xinitrc new file mode 100644 index 0000000..e615f8a --- /dev/null +++ b/mods/graphical-me.fier.de/data/etc/skel/.xinitrc @@ -0,0 +1 @@ +me.fier.de \ No newline at end of file diff --git a/mods/graphical-me.fier.de/data/opt/me.fier.de/app b/mods/graphical-me.fier.de/data/opt/me.fier.de/app new file mode 100755 index 0000000..4e40fc6 --- /dev/null +++ b/mods/graphical-me.fier.de/data/opt/me.fier.de/app @@ -0,0 +1,32 @@ +#!/bin/bash +de_path="$(dirname "$(realpath "$BASH_SOURCE")")" +de_distro="${de_distro:="me.fier.de"}" +de_conf_global="${de_conf_global:="$de_path/user"}" +de_conf_local="${de_conf_local:="$HOME/.config/$de_distro"}" + +if [ "$1" = "source" ]; then + return 0 +fi + +if ! [ "$1" = "" ]; then + echo $1 + source "$de_path/applets/$1" +fi + +if ! [ -d "$de_conf_local" ]; then + cp -r "$de_conf_global" "$de_conf_local" +fi + +while IFS="" read -r de_module || [ -n "$de_module" ]; do + if [ -f "$de_conf_local/modules.d/$de_module/source" ]; then + source "$de_conf_local/modules.d/$de_module/source" + fi + + if [ -x "$de_conf_local/modules.d/$de_module/run" ]; then + "$de_conf_local/modules.d/$de_module/run" "$de_conf_local" "$de_module" + fi + + if [ -x "$de_conf_local/modules.d/$de_module/exec" ]; then + exec "$de_conf_local/modules.d/$de_module/exec" "$de_conf_local" "$de_module" + fi +done < "$de_conf_local/modules" diff --git a/mods/graphical-me.fier.de/data/opt/me.fier.de/applets/logoff b/mods/graphical-me.fier.de/data/opt/me.fier.de/applets/logoff new file mode 100644 index 0000000..b28ec62 --- /dev/null +++ b/mods/graphical-me.fier.de/data/opt/me.fier.de/applets/logoff @@ -0,0 +1,7 @@ +#!/bin/bash +while IFS="" read -r de_module || [ -n "$de_module" ]; do + if [ -x "$de_conf_local/modules.d/$de_module/logoff" ]; then + "$de_conf_local/modules.d/$de_module/logoff" "$de_conf_local" "$de_module" + fi +done < "$de_conf_local/modules" +exit 0 diff --git a/mods/graphical-me.fier.de/data/opt/me.fier.de/install b/mods/graphical-me.fier.de/data/opt/me.fier.de/install new file mode 100755 index 0000000..ba40565 --- /dev/null +++ b/mods/graphical-me.fier.de/data/opt/me.fier.de/install @@ -0,0 +1,30 @@ +#!/bin/bash +set -e +script_path="$(dirname "$(realpath -s "$BASH_SOURCE")")" +cd "$script_path" +chmod +x app +source app source +install_dest="${install_dest:="/opt/$de_distro"}" + +if [ "$de_distro" = "" ]; then + echo "No distro name." + exit 1 +fi + +if [ "$script_path" = "$install_dest" ]; then + echo "Can't install from inside destination directory." + exit 1 +fi + +if [ -d "$install_dest" ]; then + echo "Use $install_dest/uninstall first." + exit 1 +fi +cp -r "$script_path" "$install_dest" +echo "" >"$install_dest/installed" + +if [ -L "/usr/local/bin/$de_distro" ]; then + rm "/usr/local/bin/$de_distro" +fi + +ln -s "$script_path/app" "/usr/local/bin/$de_distro" diff --git a/mods/graphical-me.fier.de/data/opt/me.fier.de/installed b/mods/graphical-me.fier.de/data/opt/me.fier.de/installed new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/mods/graphical-me.fier.de/data/opt/me.fier.de/installed @@ -0,0 +1 @@ + diff --git a/mods/graphical-me.fier.de/data/opt/me.fier.de/pack b/mods/graphical-me.fier.de/data/opt/me.fier.de/pack new file mode 100755 index 0000000..6764005 --- /dev/null +++ b/mods/graphical-me.fier.de/data/opt/me.fier.de/pack @@ -0,0 +1,10 @@ +#!/bin/bash +set -e +DIR="$(dirname "$(realpath "$BASH_SOURCE")")" +DISTRO="me.fier.de" +cd "$DIR" +if [ -f "$DISTRO.tar.bz2" ]; then rm "$DISTRO.tar.bz2"; fi +cd ".." +if [ -f "$DISTRO.tar.bz2" ]; then rm "$DISTRO.tar.bz2"; fi +tar -cjf "$DISTRO.tar.bz2" -C "$DIR" . +mv "$DISTRO.tar.bz2" "$DIR" \ No newline at end of file diff --git a/mods/graphical-me.fier.de/data/opt/me.fier.de/readme.txt b/mods/graphical-me.fier.de/data/opt/me.fier.de/readme.txt new file mode 100644 index 0000000..1ce2261 --- /dev/null +++ b/mods/graphical-me.fier.de/data/opt/me.fier.de/readme.txt @@ -0,0 +1,12 @@ +Installation: +sudo apt install feh autorandr openbox lxpanel lxrandr pcmanfm lxterminal +sudo ./install +cp -r "userRoot/." "~" +echo "me.fier.de" >"~/.xinitrc" + +Start: +startx + +Uninstallation: +sudo /opt/me.fier.de/uninstall +rm "~/.xinitrc" \ No newline at end of file diff --git a/mods/graphical-me.fier.de/data/opt/me.fier.de/uninstall b/mods/graphical-me.fier.de/data/opt/me.fier.de/uninstall new file mode 100755 index 0000000..b1c1ae1 --- /dev/null +++ b/mods/graphical-me.fier.de/data/opt/me.fier.de/uninstall @@ -0,0 +1,21 @@ +#!/bin/bash +set -e +script_path="$(dirname "$(realpath -s "$BASH_SOURCE")")" +cd "$script_path" +source app source + +if [ "$de_distro" = "" ]; then + echo "No distro name." + exit 1 +fi + +if ! [ -f "$script_path/installed" ]; then + echo "Please use the uninstall executable from where you installed this app." + exit 1 +fi + +if [ -f "/usr/local/bin/$de_distro" ]; then + rm "/usr/local/bin/$de_distro" +fi + +rm -rf "$script_path" diff --git a/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules new file mode 100644 index 0000000..166a965 --- /dev/null +++ b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules @@ -0,0 +1,6 @@ +debian_keyboard +xsessionrc +autorandr +wallpaper +lxpanel +openbox diff --git a/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/autorandr/.config/autorandr/default/config b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/autorandr/.config/autorandr/default/config new file mode 100644 index 0000000..7d741eb --- /dev/null +++ b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/autorandr/.config/autorandr/default/config @@ -0,0 +1,6 @@ +output Virtual-1 +crtc 0 +mode 1024x768 +pos 0x0 +primary +rate 74.99 diff --git a/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/autorandr/.config/autorandr/default/setup b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/autorandr/.config/autorandr/default/setup new file mode 100644 index 0000000..9ffa663 --- /dev/null +++ b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/autorandr/.config/autorandr/default/setup @@ -0,0 +1 @@ +Virtual-1 00ffffffffffff0049143412000000002a180104a51a137806ee91a3544c99260f5054210800e1c0d1c00101010101010101010101012520006641001a30001e334004c310000018000000fd00327d1ea078010a202020202020000000fc0051454d55204d6f6e69746f720a000000f7000a004aa2242920000000000000012d02030a00457d6560591f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f2 diff --git a/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/autorandr/logoff b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/autorandr/logoff new file mode 100755 index 0000000..b568fbe --- /dev/null +++ b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/autorandr/logoff @@ -0,0 +1,3 @@ +#!/bin/bash +export HOME="$1/modules.d/autorandr" +autorandr --save default --force diff --git a/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/autorandr/run b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/autorandr/run new file mode 100755 index 0000000..96381e4 --- /dev/null +++ b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/autorandr/run @@ -0,0 +1,3 @@ +#!/bin/bash +export HOME="$1/modules.d/autorandr" +autorandr --load default diff --git a/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/debian_keyboard/run b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/debian_keyboard/run new file mode 100755 index 0000000..30f2f3f --- /dev/null +++ b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/debian_keyboard/run @@ -0,0 +1,3 @@ +#!/bin/bash +source /etc/default/keyboard +setxkbmap "$XKBLAYOUT" "$XKBVARIANT" -model "$XKBMODEL" diff --git a/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/lxpanel/run b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/lxpanel/run new file mode 100755 index 0000000..3cb7912 --- /dev/null +++ b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/lxpanel/run @@ -0,0 +1,2 @@ +#!/bin/bash +lxpanel & disown diff --git a/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/openbox/exec b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/openbox/exec new file mode 100755 index 0000000..fbda36b --- /dev/null +++ b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/openbox/exec @@ -0,0 +1,2 @@ +#!/bin/bash +exec openbox --config-file "$1/modules.d/$2/rc.xml" diff --git a/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/openbox/logoff b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/openbox/logoff new file mode 100755 index 0000000..017fd00 --- /dev/null +++ b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/openbox/logoff @@ -0,0 +1,2 @@ +#!/bin/bash +openbox --exit diff --git a/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/openbox/rc.xml b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/openbox/rc.xml new file mode 100644 index 0000000..2a08cd7 --- /dev/null +++ b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/openbox/rc.xml @@ -0,0 +1,653 @@ + + + + + 10 + 20 + + + yes + + no + + yes + + no + + 200 + + no + + + + UnderMouse + +
yes
+ + Mouse + + Mouse + +
+ + Nightmare + NLIMC + + yes + no + + sans + 8 + + bold + + normal + + + + sans + 8 + + bold + + normal + + + + sans + 9 + + normal + + normal + + + + sans + 9 + + normal + + normal + + + + sans + 9 + + bold + + normal + + + + sans + 9 + + bold + + normal + + + + + + 1 + 1 + + + + 875 + + + + no + Nonpixel + + Center + + + + 10 + + 10 + + + + + + 0 + 0 + 0 + 0 + + + TopLeft + + 0 + 0 + no + Above + + Vertical + + no + 300 + + 300 + + Middle + + + + C-g + + + + + + + + + + + + + + + + + + + + + + + + + + client-list-combined-menu + + + + + + + + + + + + + + + + true + Konqueror + + kfmclient openProfile filemanagement + + + + + + scrot + + + + + 1 + + 500 + + 400 + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + previous + + + + + next + + + + + + + + + + + + + + + + + + + + + + + + + + + + client-menu + + + + + + + top + + + + + + + left + + + + + + + right + + + + + + + bottom + + + + + + + client-menu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + client-menu + + + + + + + client-menu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + vertical + + + + + horizontal + + + + + + + + + + + + + + + + + previous + + + + + next + + + + + previous + + + + + next + + + + + previous + + + + + next + + + + + + + + + + + + + + + + client-list-combined-menu + + + + + lxpanelctl menu + + + + + + + previous + + + + + next + + + + + previous + + + + + next + + + + + + + + + /var/lib/openbox/debian-menu.xml + menu.xml + 200 + + no + + 100 + + 400 + + yes + + yes + + + + + +
diff --git a/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/wallpaper/run b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/wallpaper/run new file mode 100755 index 0000000..f9b5500 --- /dev/null +++ b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/wallpaper/run @@ -0,0 +1,2 @@ +#!/bin/bash +feh --no-fehbg --bg-fill "$(cat "$1/wallpaper")" diff --git a/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/xsessionrc/source b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/xsessionrc/source new file mode 100644 index 0000000..2c10b97 --- /dev/null +++ b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/modules.d/xsessionrc/source @@ -0,0 +1 @@ +source "$HOME/.xsessionrc" diff --git a/mods/graphical-me.fier.de/data/opt/me.fier.de/user/wallpaper b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/wallpaper new file mode 100644 index 0000000..d790916 --- /dev/null +++ b/mods/graphical-me.fier.de/data/opt/me.fier.de/user/wallpaper @@ -0,0 +1 @@ +Pictures/ancrKbH.jpg diff --git a/mods/graphical-me.fier.de/modscript b/mods/graphical-me.fier.de/modscript new file mode 100755 index 0000000..b2c32ce --- /dev/null +++ b/mods/graphical-me.fier.de/modscript @@ -0,0 +1,3 @@ +#!/bin/bash +export WDVN_PACKAGES_DL="$WDVN_PACKAGES_DL xinit unifont feh autorandr openbox lxpanel lxrandr pcmanfm lxterminal" +export WDVN_PACKAGES_REMOVE="$WDVN_PACKAGES_REMOVE xscreensaver" \ No newline at end of file