%r**and%e**are registers. Registers store output of instructions and can be used to give input to instructions- when writing
(%r**), it is accessing memory location given by value of register%r**. Its like pointer dereferencing. A number before a memory access applies an offset to the accessed location.-8(%rdi)would get value at memory location given by%rdi-8. %rdiregister is used internally to pass reference of class instance to a member function of that class.%rbpregister stores the location of start of stack frame of that function. That is why all temp values will be stored relative to it. Stacks grow downward (towards 0) hence you see so many negative offsets.
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
| diff --unified --recursive --color lightdm-mini-greeter-0.3.4/data/lightdm-mini-greeter.conf lightdm-mini-greeter-0.3.4-new/data/lightdm-mini-greeter.conf | |
| --- lightdm-mini-greeter-0.3.4/data/lightdm-mini-greeter.conf 2018-11-02 19:32:27.000000000 +0530 | |
| +++ lightdm-mini-greeter-0.3.4-new/data/lightdm-mini-greeter.conf 2019-09-15 23:52:02.692974802 +0530 | |
| @@ -56,3 +56,7 @@ | |
| password-color = "#F8F8F0" | |
| # The background color of the password input. | |
| password-background-color = "#1B1D1E" | |
| + | |
| +# Relative position of window on screen (0-1 float) | |
| +x-pos = 0.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
| diff --git a/config.def.h b/config.def.h | |
| index a9ac303..51e2ab0 100644 | |
| --- a/config.def.h | |
| +++ b/config.def.h | |
| @@ -2,6 +2,7 @@ | |
| /* appearance */ | |
| static const unsigned int borderpx = 1; /* border pixel of windows */ | |
| +static const unsigned int gappx = 1; /* gap pixel between windows */ | |
| static const unsigned int snap = 32; /* snap pixel */ |
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
| from kivy.app import App | |
| from kivy.core.window import Window | |
| from kivy.clock import Clock | |
| from kivy.uix.widget import Widget | |
| from kivy.properties import StringProperty | |
| from kivent_core.systems.gamesystem import GameSystem | |
| from kivent_core.managers.resource_managers import texture_manager | |
| from os.path import dirname, join, abspath | |
| from kivent_maps import map_utils | |
| from kivent_maps.map_system import MapSystem |
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
| #!/bin/bash | |
| ##################################### | |
| # | |
| # Installer script for kivent modules | |
| # Author: Meet Udeshi | |
| # | |
| ##################################### | |
| ############ CONFIG ########### |