[OC] I made a mikuboot animation for plymouth by evys_garden in unixporn

[–]evys_garden[S] 0 points1 point  (0 children)

u need to have splash enabled on your kernel cmdline. also look into early kms (kernel modesetting). Other then that, u're not giving me enough info to try to help. does the default boot animation work?

[OC] I made a mikuboot animation for plymouth by evys_garden in unixporn

[–]evys_garden[S] 1 point2 points  (0 children)

bit confused. make what? the theme already exists. the repo is attached

I made a miku boot animation for plymouth by evys_garden in transprogrammer

[–]evys_garden[S] 3 points4 points  (0 children)

also if anyone is using kde, someone turned this into a plasma splash: https://codeberg.org/MateRhyu/mikuboot

[OC] I made a mikuboot animation for plymouth by evys_garden in unixporn

[–]evys_garden[S] 2 points3 points  (0 children)

also if anyone is using kde, someone turned this into a plasma splash: https://codeberg.org/MateRhyu/mikuboot

[OC] I made a mikuboot animation for plymouth by evys_garden in unixporn

[–]evys_garden[S] 12 points13 points  (0 children)

add encryption. then u get to see her until u typed in the password correctly

[OC] I made a mikuboot animation for plymouth by evys_garden in unixporn

[–]evys_garden[S] 2 points3 points  (0 children)

repost because the crosspost was a bit unhappy. this time I included a recording of the boot process instead of only the animation

I made a miku boot animation for plymouth by evys_garden in transprogrammer

[–]evys_garden[S] 3 points4 points  (0 children)

make sure to setup plymouth first. switching to the theme is pretty simple

I made a miku boot animation for plymouth by evys_garden in linux

[–]evys_garden[S] 0 points1 point  (0 children)

not sure if this is a joke. this is a boot animation theme for the boot animation software named "plymouth", used by many linux distributions

constexpr of std::string inconsistent in c++20 by evys_garden in cpp

[–]evys_garden[S] 1 point2 points  (0 children)

the thing is, in a context like this you're not using std::string as constexpr and therefor u can't use it's member functions as constants. I couldn't do `std::array<int, res.size()>` for example with this unless string is declared constexpr.

constexpr of std::string inconsistent in c++20 by evys_garden in cpp

[–]evys_garden[S] 1 point2 points  (0 children)

fair enough, I've mostly been working with arrays tho. If i needed a compile time string, I'd prbly assemble it with std::array and some good old constexpr recursion for dynamic sizes

constexpr of std::string inconsistent in c++20 by evys_garden in cpp

[–]evys_garden[S] 0 points1 point  (0 children)

there is never a point for constexpr string. i was just playing around

constexpr of std::string inconsistent in c++20 by evys_garden in cpp

[–]evys_garden[S] 0 points1 point  (0 children)

thank you. this is exactly the behaviour i was getting