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
#mouse focus milarky | |
[org.gnome.desktop.wm.preferences] | |
focus-mode='sloppy' | |
auto-raise=True | |
auto-raise-delay=500 | |
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
pymel.formLayout(self.form, e=True, | |
attachForm=[ | |
(self.location, "top", 0), | |
(self.location, "left", 0), | |
(self.location, "right", 0), | |
(self.jobNameText, "top", 25), | |
(self.jobNameText, "left", 5), |
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
#include <FastLED.h> | |
#define NUM_LEDS 23 | |
#define BRIGHTNESS_LEDS 84 // set within 0-100 for max brightnetss | |
//#define MAX_CYCLES 3 | |
#define DATA_PIN 1 // pin the data line is connected to | |
// Define the array of leds | |
CRGB leds[NUM_LEDS]; |
OlderNewer