sagan port for OpenBSD is also available
This file contains 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
unbind C-b | |
set-option -g prefix "`" | |
bind-key "`" send-prefix | |
# Automatically set window title | |
set-window-option -g automatic-rename on | |
set-option -g set-titles on | |
# Start windows and panes at 1, not 0 | |
set -g base-index 1 | |
setw -g pane-base-index 1 |
This file contains 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/sh | |
RFKILL=/usr/sbin/rfkill | |
BT_SLEEP=/proc/bluetooth/sleep/proto | |
FIRMWARE=/persist | |
HCI_DEVICE=/dev/ttyHSL0 | |
HCI_INIT=/system/bin/hci_qcomm_init | |
HCI_ATTACH=/usr/sbin/hciattach | |
HCI_TRANSPORT=smd | |
BT_POWER_CLASS=2 |
This file contains 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
#!/system/bin/sh | |
# Copyright (c) 2009-2013, The Linux Foundation. All rights reserved. | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions are met: | |
# * Redistributions of source code must retain the above copyright | |
# notice, this list of conditions and the following disclaimer. | |
# * Redistributions in binary form must reproduce the above copyright | |
# notice, this list of conditions and the following disclaimer in the | |
# documentation and/or other materials provided with the distribution. |
This file contains 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
import QtQuick 2.0 | |
import Sailfish.Silica 1.0 | |
import com.jolla.settings.system 1.0 | |
import org.nemomobile.systemsettings 1.0 | |
import org.nemomobile.dbus 1.0 | |
import Qt.labs.folderlistmodel 2.1 | |
Page { | |
id: aboutPage |