Merge branch 'feature/35' into develop

This commit is contained in:
Suikan 2022-05-07 14:54:51 +09:00
commit b8db4d4977
3 changed files with 2 additions and 14 deletions

View file

@ -8,6 +8,8 @@ Record of the modification in project development.
### Changed
### Deprecated
### Removed
- [Issue 35 : Remove XTERMFONTSIZE variable.](https://github.com/suikan4github/kaiten-yaki/issues/35)
### Fixed
- [Issue 32 : Ubuntu 22.04 fails to deactivate the swap](https://github.com/suikan4github/kaiten-yaki/issues/32)

View file

@ -92,9 +92,6 @@ export OVERWRITEINSTALL=0
# If you specify 1000, that means 1000mSec. 0 means compile default.
export ITERTIME=0
# Void Linux only. Ignored in Ubuntu.
# The font size of the void-installer
export XTERMFONTSIZE=11
```
There are several restrictions :

View file

@ -69,9 +69,6 @@ export OVERWRITEINSTALL=0
# If you specify 1000, that means 1000mSec. 0 means compile default.
export ITERTIME=0
# Void Linux only. Ignored in Ubuntu.
# The font size of the void-installer
export XTERMFONTSIZE=11
# !!!!!!!!!!!!!! DO NOT EDIT FOLLOWING LINES. !!!!!!!!!!!!!!
@ -91,11 +88,3 @@ else
# BIOS firmware
export CRYPTPARTITION=1
fi # EFI firmware
# Detect the GUI environment
# This code is not efered. Just left because it is interestintg code.
if env | grep -w -e XDG_SESSION_TYPE -e DISPLAY -e WAYLAND_DISPLAY > /dev/null ; then
export GUIENV=1 # set 1 if GUI env.
else
export GUIENV=0 # set 0 if not GUI env.
fi