Skip to content

Instantly share code, notes, and snippets.

View darkoverlordofdata's full-sized avatar

Bruce Davidson darkoverlordofdata

View GitHub Profile
@darkoverlordofdata
darkoverlordofdata / FindGNUstep.cmake
Created November 7, 2023 00:26
cmake file gnustep module
set ( GNUSTEP_FOUND True )
enable_language( OBJC )
##
#
# gnustep-config --objc-flags
#
@darkoverlordofdata
darkoverlordofdata / init.md
Last active September 5, 2022 22:56
After instailling helloSystem
@darkoverlordofdata
darkoverlordofdata / install.sh
Created April 5, 2022 23:05
Install PepermintOS Ice on Debian Bullseye
/# Get release at https://github.com/peppermintos/ice/releases/tag/v6.0.8
tar xvzf ice-6.0.8.tar.gz
cd ice-6.0.8
sudo cp usr/bin/ice /usr/bin/ice
sudo cp usr/bin/ice /usr/bin/ice-firefox
sudo mkdir -p /usr/lib/peppermint/ice
sudo cp usr/lib/peppermint/ice/ice.glade /usr/lib/peppermint/ice/ice.glade
sudo cp usr/lib/peppermint/ice/places.sqlite /usr/lib/peppermint/ice/places.sqlite
@darkoverlordofdata
darkoverlordofdata / install-rpi00.txt
Last active April 4, 2022 02:13
Install KDE on rpi400
install kde on rpi400:
https://www.raspberrypi.com/software/operating-systems/#raspberry-pi-os-64-bit
make a disk for Raspberry Pi OS Lite
sudo apt update
sudo apt upgrade
sudo apt dist-upgrade
@darkoverlordofdata
darkoverlordofdata / stuff
Last active February 4, 2022 04:03
freebsd
desktop2app
sudo cp ./debian.img /compat
catlock -t wallpaper -p 420420
zsh wallpaper/copy.sh ~/Pictures/MyWallpaper.jpg 1366 768
mkdir -p ~/.local/share/catlock/themes
convert th.png MyWallpaper.jpg
@darkoverlordofdata
darkoverlordofdata / GNUstep-buildon-debian11.sh
Created November 21, 2021 18:54
GNUstep on chromebook
#!/bin/bash
## Script to install the newest available version of GNUstep on Debian stable (bullseye)
# Show prompt function
function showPrompt()
{
if [ "$PROMPT" = true ] ; then
echo -e "\n\n"
read -p "${GREEN}Press enter to continue...${NC}"
@darkoverlordofdata
darkoverlordofdata / Local.conf
Last active August 26, 2021 18:04
installing chromium on helloSystem
# /usr/local/etc/pkg/repos/Local.conf
Poudriere: {
url: "file:///usr/local/poudriere/data/packages/main-default"
}
FreeBSD: {
enabled: no
}
@darkoverlordofdata
darkoverlordofdata / gnustep fonts.md
Last active November 22, 2022 21:53
fix gnustep fonts
git clone https://github.com/AppleDesignResources/SanFranciscoFont
cp -rf ~/SanFranciscoFont ~/.fonts

defaults write NSGlobalDomain NSFont SanFranciscoDisplay-Regular
defaults write NSGlobalDomain NSFontSize 14
defaults write NSGlobalDomain NSBoldFont SanFranciscoDisplay-Bold
defaults write NSGlobalDomain NSBoldFontSize 14
defaults write NSGlobalDomain NSLabelFont SanFranciscoDisplay-Regular
defaults write NSGlobalDomain NSLabelFontSize 14
@darkoverlordofdata
darkoverlordofdata / OpenGL.m
Created June 5, 2021 20:12
OpenGL wrapper vanilla c
#import <GL/gl.h>
#import <SDL2/SDL.h>
/*
* OpenGL Loader
*/
typedef struct OpenGL OpenGL;
extern OpenGL gl;
OpenGL gl;
@darkoverlordofdata
darkoverlordofdata / readme.md
Last active October 4, 2019 23:07
raspberrypi

Install Raspbian Buster

preferences -> RaspberryPi Configuration ->Interfaces
  enable vnc & ssh
  change host name
  disable auto login

sudo apt update