├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── release └── gitkeep ├── screenshots ├── cinnamon-13a.png ├── lightdm.png ├── mate-12a.png ├── mate-12b.png └── mate-12c.png ├── src ├── buildversion ├── config │ ├── 001_mod-php.conf │ ├── 10-keyboard.conf │ ├── 20-amdgpu.conf │ ├── 20-intel.conf │ ├── 20-intelSB.conf │ ├── 20-radeon.conf │ ├── cinnamon-settings │ ├── darkmate-settings │ ├── gterm-settings │ ├── lightdm-gtk-greeter.conf │ └── nemo-settings ├── desktops │ ├── desktop-cinnamon.sh │ ├── desktop-mate.sh │ ├── icons.sh │ ├── login-lightdm.sh │ ├── login-slim.sh │ └── wallpapers.sh ├── include │ ├── constants.sh │ ├── functions.sh │ ├── functions_dia.sh │ ├── install_cliapps.sh │ ├── install_guiapps.sh │ ├── install_kbd.sh │ ├── install_skel.sh │ ├── install_video.sh │ ├── kbd_str.sh │ ├── run_checks.sh │ └── variables.sh ├── main.sh ├── polkit │ └── shutdown-reboot.rules ├── themes │ ├── Arc-Dark-Grey.readme │ ├── Arc-Dark-Grey.tar.xz │ ├── Mint-Y-Dark-Aqua.zip │ ├── Mint-Y-Dark-Grey.zip │ ├── Mint-Y-Dark-Red.zip │ ├── Mint-Y-Dark-Teal.zip │ ├── darkslim.tar.xz │ ├── icons │ │ ├── bsdicon48.png │ │ ├── bsdicon512.png │ │ └── bsdicon64.png │ └── wallpaper │ │ ├── centerFlat_grey-1080.png │ │ ├── centerFlat_grey-4k.png │ │ ├── centerFlat_red-1080.png │ │ └── centerFlat_red-4k.png └── tools │ ├── cinnamon-dumpsettings │ ├── cputemp.sh │ └── mate-dumpsettings ├── tests ├── gsettings.sh ├── latestpma.sh └── users.sh └── versions ├── 2021-04-22 └── 2023-03-10 /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/README.md -------------------------------------------------------------------------------- /release/gitkeep: -------------------------------------------------------------------------------- 1 | target folder for builds 2 | -------------------------------------------------------------------------------- /screenshots/cinnamon-13a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/screenshots/cinnamon-13a.png -------------------------------------------------------------------------------- /screenshots/lightdm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/screenshots/lightdm.png -------------------------------------------------------------------------------- /screenshots/mate-12a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/screenshots/mate-12a.png -------------------------------------------------------------------------------- /screenshots/mate-12b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/screenshots/mate-12b.png -------------------------------------------------------------------------------- /screenshots/mate-12c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/screenshots/mate-12c.png -------------------------------------------------------------------------------- /src/buildversion: -------------------------------------------------------------------------------- 1 | 20230319 2 | -------------------------------------------------------------------------------- /src/config/001_mod-php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/config/001_mod-php.conf -------------------------------------------------------------------------------- /src/config/10-keyboard.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/config/10-keyboard.conf -------------------------------------------------------------------------------- /src/config/20-amdgpu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/config/20-amdgpu.conf -------------------------------------------------------------------------------- /src/config/20-intel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/config/20-intel.conf -------------------------------------------------------------------------------- /src/config/20-intelSB.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/config/20-intelSB.conf -------------------------------------------------------------------------------- /src/config/20-radeon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/config/20-radeon.conf -------------------------------------------------------------------------------- /src/config/cinnamon-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/config/cinnamon-settings -------------------------------------------------------------------------------- /src/config/darkmate-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/config/darkmate-settings -------------------------------------------------------------------------------- /src/config/gterm-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/config/gterm-settings -------------------------------------------------------------------------------- /src/config/lightdm-gtk-greeter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/config/lightdm-gtk-greeter.conf -------------------------------------------------------------------------------- /src/config/nemo-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/config/nemo-settings -------------------------------------------------------------------------------- /src/desktops/desktop-cinnamon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/desktops/desktop-cinnamon.sh -------------------------------------------------------------------------------- /src/desktops/desktop-mate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/desktops/desktop-mate.sh -------------------------------------------------------------------------------- /src/desktops/icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/desktops/icons.sh -------------------------------------------------------------------------------- /src/desktops/login-lightdm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/desktops/login-lightdm.sh -------------------------------------------------------------------------------- /src/desktops/login-slim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/desktops/login-slim.sh -------------------------------------------------------------------------------- /src/desktops/wallpapers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/desktops/wallpapers.sh -------------------------------------------------------------------------------- /src/include/constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/include/constants.sh -------------------------------------------------------------------------------- /src/include/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/include/functions.sh -------------------------------------------------------------------------------- /src/include/functions_dia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/include/functions_dia.sh -------------------------------------------------------------------------------- /src/include/install_cliapps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/include/install_cliapps.sh -------------------------------------------------------------------------------- /src/include/install_guiapps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/include/install_guiapps.sh -------------------------------------------------------------------------------- /src/include/install_kbd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/include/install_kbd.sh -------------------------------------------------------------------------------- /src/include/install_skel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/include/install_skel.sh -------------------------------------------------------------------------------- /src/include/install_video.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/include/install_video.sh -------------------------------------------------------------------------------- /src/include/kbd_str.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/include/kbd_str.sh -------------------------------------------------------------------------------- /src/include/run_checks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/include/run_checks.sh -------------------------------------------------------------------------------- /src/include/variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/include/variables.sh -------------------------------------------------------------------------------- /src/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/main.sh -------------------------------------------------------------------------------- /src/polkit/shutdown-reboot.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/polkit/shutdown-reboot.rules -------------------------------------------------------------------------------- /src/themes/Arc-Dark-Grey.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/themes/Arc-Dark-Grey.readme -------------------------------------------------------------------------------- /src/themes/Arc-Dark-Grey.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/themes/Arc-Dark-Grey.tar.xz -------------------------------------------------------------------------------- /src/themes/Mint-Y-Dark-Aqua.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/themes/Mint-Y-Dark-Aqua.zip -------------------------------------------------------------------------------- /src/themes/Mint-Y-Dark-Grey.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/themes/Mint-Y-Dark-Grey.zip -------------------------------------------------------------------------------- /src/themes/Mint-Y-Dark-Red.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/themes/Mint-Y-Dark-Red.zip -------------------------------------------------------------------------------- /src/themes/Mint-Y-Dark-Teal.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/themes/Mint-Y-Dark-Teal.zip -------------------------------------------------------------------------------- /src/themes/darkslim.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/themes/darkslim.tar.xz -------------------------------------------------------------------------------- /src/themes/icons/bsdicon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/themes/icons/bsdicon48.png -------------------------------------------------------------------------------- /src/themes/icons/bsdicon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/themes/icons/bsdicon512.png -------------------------------------------------------------------------------- /src/themes/icons/bsdicon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/themes/icons/bsdicon64.png -------------------------------------------------------------------------------- /src/themes/wallpaper/centerFlat_grey-1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/themes/wallpaper/centerFlat_grey-1080.png -------------------------------------------------------------------------------- /src/themes/wallpaper/centerFlat_grey-4k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/themes/wallpaper/centerFlat_grey-4k.png -------------------------------------------------------------------------------- /src/themes/wallpaper/centerFlat_red-1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/themes/wallpaper/centerFlat_red-1080.png -------------------------------------------------------------------------------- /src/themes/wallpaper/centerFlat_red-4k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/themes/wallpaper/centerFlat_red-4k.png -------------------------------------------------------------------------------- /src/tools/cinnamon-dumpsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/tools/cinnamon-dumpsettings -------------------------------------------------------------------------------- /src/tools/cputemp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/tools/cputemp.sh -------------------------------------------------------------------------------- /src/tools/mate-dumpsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/src/tools/mate-dumpsettings -------------------------------------------------------------------------------- /tests/gsettings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/tests/gsettings.sh -------------------------------------------------------------------------------- /tests/latestpma.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/tests/latestpma.sh -------------------------------------------------------------------------------- /tests/users.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/tests/users.sh -------------------------------------------------------------------------------- /versions/2021-04-22: -------------------------------------------------------------------------------- 1 | added lightDM as coice -------------------------------------------------------------------------------- /versions/2023-03-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broozar/installDesktopFreeBSD/HEAD/versions/2023-03-10 --------------------------------------------------------------------------------