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
| CONFIG_LOCALVERSION_AUTO=y | |
| # CONFIG_BUILD_SALT is not set | |
| # CONFIG_PREEMPT_NONE is not set | |
| # CONFIG_PREEMPT_VOLUNTARY is not set | |
| # CONFIG_PREEMPT is not set | |
| CONFIG_PREEMPT_LAZY=y | |
| # CONFIG_PREEMPT_RT is not set | |
| CONFIG_RCU_EXPERT=y | |
| CONFIG_RCU_LAZY=y | |
| # CONFIG_RCU_LAZY_DEFAULT_OFF is not set |
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
| P: /devices/pci0000:00/0000:00:01.3/0000:02:00.2/0000:03:09.0/0000:09:00.0/usb2/2-1/2-1.1/2-1.1:1.0/0003:046D:C547.0026/input/input47/event16 | |
| M: event16 | |
| R: 16 | |
| U: input | |
| D: c 13:80 | |
| N: input/event16 | |
| L: 0 | |
| S: input/by-path/pci-0000:09:00.0-usb-0:1.1:1.0-event-mouse | |
| S: input/by-id/usb-Logitech_USB_Receiver-event-mouse | |
| E: DEVPATH=/devices/pci0000:00/0000:00:01.3/0000:02:00.2/0000:03:09.0/0000:09:00.0/usb2/2-1/2-1.1/2-1.1:1.0/0003:046D:C547.0026/input/input47/event16 |
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
| #!/usr/bin/env python3 | |
| from barython import Panel, Screen | |
| from barython.widgets.base import TextWidget, Widget | |
| from barython.widgets.battery import BatteryWidget | |
| from barython.widgets.clock import ClockWidget | |
| from barython.widgets.audio import PulseAudioWidget | |
| from barython.widgets.mpd import MPDWidget | |
| from barython.widgets.xorg import ActiveWindowWidget | |
| from barython.widgets.bspwm import BspwmDesktopWidget, BspwmDesktopPoolWidget |
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
| [globals] | |
| db_type=pgsql | |
| db_host=db.example.com | |
| db_database=selfoss | |
| db_username=selfoss | |
| db_password=DB_PASSWORD | |
| db_port=5432 | |
| items_perpage=100 | |
| items_lifetime=30 | |
| username=USER |
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
| recursive-include molecule/cookiecutter * |
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
| #!/usr/bin/env python3 | |
| EXAMPLE = [40, 3, 5, 10, -2] | |
| def merge_sort(lst): | |
| if len(lst) < 2: | |
| return lst | |
| elif len(lst) == 2: | |
| return [min(lst), max(lst)] |
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
| - name: ssh - add authorized keys {{ playbook_dir }} | |
| authorized_key: " | |
| user='{{ ansible_env.USER }}' | |
| key='{{ lookup('file', playbook_dir + '/files/ssh_public_keys/' + item) }}' | |
| state=present | |
| " | |
| with_items: "{{ ssh_authorized_keys }}" | |
| - name: ssh - add authorized keys {{ playbook_dir }} | |
| authorized_key: " |
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
| # Maintainer : Anish Bhatt <anish at gatech dot edu> | |
| # Co-Maintainer: Det <nimetonmaili gmail a-dot com> | |
| # Contributor: Alucryd <alucryd at gmail dot com> | |
| # Contributor: Jason Melton <jason dot melton at gmail dot com> | |
| # Contributor: Youpi <max dot flocard at gmail dot com> | |
| # Contributor: sl1pkn07 <sl1pkn07 at gmail dot com> | |
| pkgname=nvidia-beta-dkms | |
| pkgver=378.09 | |
| pkgrel=1 |
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
| #!/usr/bin/env python3 | |
| from barython import Panel, Screen | |
| from barython.widgets.base import TextWidget, Widget | |
| from barython.widgets.battery import BatteryWidget | |
| from barython.widgets.clock import ClockWidget | |
| from barython.widgets.audio import PulseAudioWidget | |
| from barython.widgets.mpd import MPDWidget | |
| from barython.widgets.xorg import ActiveWindowWidget | |
| from barython.widgets.bspwm import BspwmDesktopWidget, BspwmDesktopPoolWidget |
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
| " All system-wide defaults are set in $VIMRUNTIME/archlinux.vim (usually just | |
| " /usr/share/vim/vimfiles/archlinux.vim) and sourced by the call to :runtime | |
| " you can find below. If you wish to change any of those settings, you should | |
| " do it in this file (/etc/vimrc), since archlinux.vim will be overwritten | |
| " everytime an upgrade of the vim packages is performed. It is recommended to | |
| " make changes after sourcing archlinux.vim since it alters the value of the | |
| " 'compatible' option. | |
| set runtimepath=~/.vim,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,~/.vim/after |
NewerOlder