This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- as seen on https://gist.github.com/MartinRamm/fd91dbaa9744e9301ec8e617416ccc49 | |
| local spiralWithChangableWidth = {} | |
| spiralWithChangableWidth.name = "dwindle" | |
| function spiralWithChangableWidth.arrange(p) | |
| local fullWidth = p.workarea.width | |
| local fullHeight = p.workarea.height | |
| local tag = p.tag or screen[p.screen].selected_tag | |
| --number between 0 and 1, by default changable via Mod+L and Mod+H. Defaults to 0.5 | |
| local rawFactor = tag.master_width_factor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # For those who does not care iCloud and stock mac Applications | |
| # As well as stopping Spotlight completley | |
| # tested on bigsur (Intel and M ) | |
| #!/bin/bash | |
| # Reboot your Mac into Recovery Mode | |
| # Terminal from top menu | |
| # csrutil disable | |
| # csrutil authenticated-root disable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| VMware Workstation Pro 16.x Serials | |
| YA7RA-F6Y46-H889Z-LZMXZ-WF8UA | |
| ZV7HR-4YX17-M80EP-JDMQG-PF0RF | |
| UC3XK-8DD1J-089NP-MYPXT-QGU80 | |
| GV100-84W16-M85JP-WXZ7E-ZP2R6 | |
| YF5X2-8MW91-4888Y-DNWGC-W68TF | |
| AY1XK-0NG5P-0855Y-K6ZXG-YK0T4 | |
| VMware Workstation Player 16.x Serials |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local wibox = require('wibox') | |
| local gears = require('gears') | |
| local awful = require('awful') | |
| local function update_backdrop(w, c) | |
| local cairo = require('lgi').cairo | |
| local geo = c.screen.geometry | |
| w.x = geo.x | |
| w.y = geo.y |
Simulate an instalation using chroot on an Qemu machine
See this Qemu script to start an virtual machine on windows 10 with one disk to boot, 4 disks to simulate an RAID and 1 usbdisk, and 2 nic devices
Start Alpine from iso file and setup to save config into usbdisk
Hint: first user is root with no password
OBS: Do not setup disks yet
echo -e "/dev/sdf1\t/media/usb\tvfat\trw\t0\t0" > /etc/fstab
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- awesomewm fancy_taglist: a taglist that contains a tasklist for each tag. | |
| -- Usage: | |
| -- 1. Save as "fancy_taglist.lua" in ~/.config/awesome | |
| -- 2. Add a fancy_taglist for every screen: | |
| -- awful.screen.connect_for_each_screen(function(s) | |
| -- ... | |
| -- local fancy_taglist = require("fancy_taglist") | |
| -- s.mytaglist = fancy_taglist.new({ | |
| -- screen = s, |