gsettings set org.pantheon.desktop.gala.keybindings switch-input-source "['<Alt>Shift_L', '<Alt>Shift_R', '<Shift>Alt_L', '<Shift>Alt_R']"
gsettings set org.pantheon.desktop.gala.keybindings switch-input-source "['<Ctrl>Shift_L', '<Ctrl>>Shift_R', '<Shift>Control_L', '<Shift>Control_R']"
element{
width: 100vw; /* или 100% */
height: 100vh;
/* и/или height вычислять в js через document.body.clientHeight и там же задавать
$('element').height(document.body.clientHeight); на ready и resize function*/
}
window.onload = init;
// === private
function init() {
var audio = $('#myplayer').get(0);
audio.src = 'http://radio.at.aknet.kg:8008/radio_record.aac';
$('#playpause').click(function() {
if (audio.paused) {
this.textContent = 'Остановить';
audio.play();
return;
}
this.textContent = 'Воспроизвести';
audio.pause();
});
$('#volume').change(function() {
audio.volume = this.value / 100;
});
setInterval(updateTrack, 5000);
}
function updateTrack() {
var url = 'http://www.radiorecord.ru/xml/record_online_v3.txt';
$.getJSON(url, function(json) {
var key = json.ARTIST + ' - ' + json.NAME;
$('#track').text('Сейчас играет: ' + key);
$('#sg').attr('href', 'https://www.google.ru/search?q=' + key);
$('#sn').attr('href', 'http://namba.kg/#!/search/mp3/' + key)
});
}